Summary -
In this topic, we described about the <kbd> tag along with detailed example.
Keyboard Input. Keyboard formatting is used to define the keyboard input. Keyboard input means the input/text entered by the user in any means.
Keyboard formatting uses <kbd> tag. Any text in between <kbd>..</kbd> defines it as keyboard input to browsers. <kbd> element is nested element.
Syntax -
<kbd>.... HTML text here </kbd>
Example -
<!DOCTYPE html>
<html>
<head>
<title> Keyboard formatting element example.. </title>
</head>
<body>
<p><kbd> File > Open > type > save</kbd></p>
</body>
</html>