我们如何使用HTML中的 <samp>标记对计算机输出进行格式化?

<samp>标签是短语标签,用于标识计算机程序输出的示例。大多数浏览器将以单型字体显示<samp>元素。

这个标签可以在html文档中用作-

示例

<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>