HTML kbd tag
The <kbd>
tag is used to define keyboard input. The user agent defaults to rendering the contents of a <kbd>
element using its default monospace font, although this is not mandated by the HTML standard.
<kbd>Shift</kbd>
/* Default style */
kbd {
font-family: monospace;
}