La etiqueta de frase se utiliza para definir la entrada del teclado. El texto encerrado por la etiqueta <kbd> normalmente se muestra en la fuente monoespaciada predeterminada del navegador. En este artículo, definimos la entrada de teclado usando varios tipos de etiquetas como <kbd>, <code>, <em>, <var> y <samp>.
Sintaxis:
<kbd> Contents... </kbd>
Ejemplo 1:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title> How to define keyboard input </title> </head> <body> <h2> How to define a various Keyboard input. </h2> <kbd>GeeksForGeeks</kbd> <em>It is a emphasized text</em> <br /> <strong> It is a Strong text </strong> <br /> <code> It is a piece of computer code </code> <br /> <samp> Sample output from a computer program </samp> <br /> <kbd>Keyboard input</kbd><br /> <var>Variable</var> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> How to define keyboard input in HTML5? </title> <style> body { text-align: center; } </style> </head> <body> <div class="gfg"> GeeksforGeeks </div> <h2> <kbd> HTML5: How to define keyboard input? </kbd> </h2> <kbd>A computer</kbd> <kbd>science</kbd> <kbd>portal</kbd> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA