HTML 包含几个用于定义用户输入和 计算机代码。
HTML <kbd> 用于键盘输入
使用 HTML 元素<kbd>
以定义键盘输入。里面的内容显示在浏览器的默认等宽字体。
<p>Save the document by pressing <kbd>Ctrl + S</kbd></p>
HTML <amp> 用于程序输出
<p>Message from my computer:</p>
<p><samp>File not found.<br>Press F1 to continue</samp></p>
HTML <code>用于计算机代码
<code>
x = 5;
y = 6;
z = x + y;
</code>
请注意,元素<code>
不会保留额外的空格和换行符。要解决此问题,可以将元素<code>
放在元素<pre>
中:
<pre>
<code>
x = 5;
y = 6;
z = x + y;
</code>
</pre>
HTML <var> 对于变量
使用 HTML 元素<var>
在编程或数学表达式中定义变量。这里面的内容通常以斜体显示。
<p>The area of a triangle is: 1/2 x <var>b</var> x <var>h</var>, where <var>b</var> is the base, and <var>h</var> is the vertical height.</p>
网友评论