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