
使用<samp>标签来显示计算机代码示例。HTML的<samp>标签用于显示计算机程序的输出。
示例
您可以尝试运行以下代码来实现HTML中的<samp>标签:
<!Doctype html>
<html>
<head>
<title>HTML samp Tag</title>
</head>
<body>
<p>The header file always starts with <samp>#include</samp>.</p>
</body>
</html>











