La etiqueta <big> en HTML se usa para aumentar el tamaño del texto seleccionado en uno más grande que el texto que lo rodea. En HTML 5, puede ser utilizado por CSS.
Nota: No es compatible con HTML 5
Sintaxis:
<big> Contents... </big>
Los siguientes ejemplos ilustran la etiqueta <big> en HTML:
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <!--Paragraph Tag --> <p>This is paragraph text</p> <!--Big Tag--> <big>This is big Tag text</big> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <!--Paragraph Tag --> <p>This is normal paragraph text</p> <!--CSS Style used in big Tag --> <big style="font-size:40px; font-weight:bold; color:green; "> Using CSS style in big Tag </big> </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