El atributo de cara HTML se utiliza para especificar el estilo de fuente predeterminado del documento.
Sintaxis:
<basefont face="font_family">
Valores de atributo: contiene el valor, es decir, font_Family, que especifica los distintos estilos de fuente utilizados para el texto en el documento.
Nota: El atributo <basefont>face no es compatible con HTM 5
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> basefont face Attribute </title> <basefont color="red" size="9" face="courier, serif"> <style> body { text-align: center; } .gfg { font-size: 40px; font-weight: bold; color: green; } .geeks { font-size: 25px; font-weight: bold; } </style> </head> <body> <div class="gfg"> GeeksforGeeks </div> <div class="geeks"> HTML basefont face Attribute </div> <p> A computer science portal for geeks </p> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con <basefont> face Attribute se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA