El atributo de tamaño HTML <basefont> se utiliza para especificar el tamaño de fuente predeterminado del documento. Hay dos atributos más para la cara y el color de la etiqueta <basfront> que especifican el color del texto y la familia de fuentes del texto. La etiqueta <basfront> no es compatible con HTML 5.
Sintaxis:
<basefont size="number">
Valor de atributo: contiene un número de valor único que especifica el tamaño de fuente del documento de texto. Tiene un valor predeterminado que es 3.
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML basefont size Attribute </title> <basefont color="red" size="15" face="courier, serif"> <style> body { text-align: center; } h1 { font-weight: bold; color: green; } h3 { font-weight: bold; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h3>HTML <basefont> size Attribute </h3> <p>A computer science portal for geeks</p> <p> <b>Note:</b> The basefont attribute is not supported in html 5 </p> </body> </html>
Producción:
Navegadores compatibles: el atributo de tamaño HTML <basefont>> no es compatible con ningún navegador.
Publicación traducida automáticamente
Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA