Lección 5 de 8
Tipografía
CSS te da control completo sobre el texto. Propiedades clave: font-family, font-size, font-weight, line-height y text-align.
Incluye siempre fuentes de respaldo por si el usuario no tiene tu primera opción.
CSS
p {
font-family: "Sora", Arial, sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 1.6;
text-align: left;
}