<kbd>


HTML <kbd> tag

Instance

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<body>

<em>强调文本</em><br>
<strong>加粗文本</strong><br>
<dfn>定义项目</dfn><br>
<code>一段电脑代码</code><br>
<samp>计算机样本</samp><br>
<kbd>键盘输入</kbd><br>
<var>变量</var>

</body>
</html>

Run Example»

Click the "Run Instance" button to view the online instance


Browser support

1000.png

Currently most browsers support < kbd> tag.


Tag definition and usage instructions

<kbd> Tag defines keyboard text.

Tips: <kbd> tag is obsolete and is not recommended for use, but Rich effects can be achieved through CSS.

All tag phrases:

##TagDescription<em> is rendered as highlighted text. <strong>Define important text. <dfn>Define a definition item. <code>Define computer code text. <samp>Define sample text. <kbd>Define keyboard text. It indicates that the text was typed from the keyboard. It is often used in computer-related documentation or manuals. <var>Define variables. You can use this tag with the <pre> and <code> tags.


Differences between HTML 4.01 and HTML5

None.


Global attributes

<kbd> tag supports global attributes, see the complete attribute table HTML global attributes.


Event attributes

<kbd> tag supports all HTML event attributes.


Related Articles

HTML Tutorial: HTML Text Formatting