MEJOR SITIO PARA DESARROLLADORES WEB
W3Schools en español. La guía de etiquetas completa

Ua En De Fr

Etiqueta HTML <basefont>


No compatible con HTML5.

La etiqueta <basefont> se usó en HTML 4 para especificar un color de texto, tamaño de fuente o familia de fuentes predeterminados para todo el texto en un documento HTML.


¿Qué usar en su lugar?

Ejemplo

Especifique un color de texto predeterminado para una página (con CSS):

<html>
<head>
<style>
body {
  color: red;
}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Try it Yourself »

Ejemplo

Especifique una familia de fuentes predeterminada para una página (con CSS):

<html>
<head>
<style>
body {
  font-family: courier, serif;
}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Try it Yourself »

Ejemplo

Especifique un tamaño de fuente predeterminado para una página (con CSS):

<html>
<head>
<style>
body {
  font-size: 50px;
}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Try it Yourself »

Consejo: En nuestro tutorial de CSS, puedes encontrar más información sobre el color de texto CSS y Fuentes CSS.