Ejemplo 1: cómo cambiar el tamaño de fuente en html
<body>
<h1 style="color:red;font-size:40px;">Heading</h1>
<p style="color:blue;font-size:18px;">This is demo text</p>
</body>
Ejemplo 2: agrandar el texto html5
p {
font-size: 15px;
}
p {
font-size: large;
}
p {
font-size: 150%;
}
Ejemplo 3: tamaño de fuente html
<span style="font-size:20px;"></span>
Ejemplo 4: cómo agrandar el texto en html
<!DOCTYPE html>
<html>
<head>
<title>HTMLFont size</title>
</head>
<body>
<h1 style="color:red;font-size:40px;">Heading</h1>
<p style="color:blue;font-size:18px;">This is demo text</p>
</body>
</html>
Ejemplo 5: cómo aumentar el tamaño de fuente en html
font-size: 25px;
Ejemplo 6: tamaño de fuente html
font-size:20px;
"default size is : +-16px;"
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)