我们使用<samp>标签来进行计算机输出格式。它是一个短语标签。它用于定义和标识计算机程序的样本输出。它将在单一字体中显示<samp>元素内的文本。
语法
<samp>The text…</samp>
Example 1
的中文翻译为:示例 1
以下是一个简单的示例,用于解释在HTML中使用<samp>标签的用法 -
<html> <head> <Meta charset="UTF-8"> <Meta name="description" content="Meta tag in the web document"> <Meta name="keywords" content="HTML,CSS"> <Meta name="author" content="lokesh"> <Meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <p><b>Pluralsight</b> is the technology workforce development company that helps teams kNow more and work better together with stronger skills, improved processes</p> <samp> Pluralsight, Inc. is an American privately held online education company that offers a variety of video training courses for software developers </samp> </body> </html>
Example 2
的中文翻译为:示例2
<html> <head> <title>Title of the document</title> </head> <body> <samp> <h2> HTML document</h2> <p>This is a paragraph.</p> <p>This is another paragraph</p> </samp> </body> </html>
Example 3
的翻译为:示例3
我们可以使用样式表覆盖字体样式。
<html> <head> <Meta charset="UTF-8"> <Meta name="description" content="Meta tag in the web document"> <Meta name="keywords" content="HTML,CSS"> <Meta name="author" content="lokesh"> <Meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> samp{ font-family: cursive; } </style> </head> <body> <p><b>Pluralsight</b> is the technology workforce development company that helps teams kNow more and work better together with stronger skills, improved processes</p> <samp> Pluralsight, Inc. is an American privately held online education company that offers a variety of video training courses for software developers </samp> </body> </html>
以上就是我们如何使用HTML中的`<pre>`标签进行计算机输出格式化?的详细内容,更多请关注编程之家其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。