En este artículo, estableceremos un texto más pequeño mediante el uso de un elemento de etiqueta <pequeño> en el documento. Esta etiqueta en HTML se usa para establecer tamaños de fuente pequeños.
Sintaxis:
<small> Content... </small>
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title> How to set smaller text using HTML5 ? </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML5: How to define smaller text? </h2> <small> Welcome to GeeksforGeeks! </small> </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