La etiqueta <u> en HTML significa subrayado y se usa para subrayar el texto encerrado dentro de la etiqueta <u>. Esta etiqueta se usa generalmente para subrayar palabras mal escritas. Esta etiqueta requiere una etiqueta inicial y otra final.
Sintaxis:
<u> Contents... </u>
Nota: esta etiqueta está obsoleta de HTML 4.1 y se redefine en HTML 5 usando la propiedad de decoración de texto CSS en su lugar.
Los siguientes ejemplos ilustran la etiqueta <u> en HTML:
Ejemplo 1:
HTML
<html> <body> <h1>GeeksforGeeks</h1> <h2><u> Tag</h2> <p>GeeksforGeeks: A <u>computer science</u> portal for geeks</p> </body> </html>
Producción:
Ejemplo 2: Forma alternativa de la etiqueta <u> para subrayar el texto.
HTML
<html> <head> <title>u Tag</title> <style> body { text-align:center; } .gfg { font-size:40px; font-weight:bold; color:green; } .geeks { font-size:25px; font-weight:bold; } p { font-size:20px; } span { text-decoration:underline; } </style> </head> <body> <div class = "gfg">GeeksforGeeks</div> <div class = "geeks"><u> Tag</div> <p>GeeksforGeeks: A <span>computer science</span> portal for geeks</p> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Borde 12 y superior
- explorador de Internet
- Firefox 1 y superior
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA