peso de fuente
Sintaxis:
font-variant="variation"
Valores de atributos:
- Valor predeterminado: El valor predeterminado es normal.
- otro valor: Otros valores son negrita, más negrita, más claro.
Usaremos el atributo font-weight para establecer el peso de la fuente.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 200 300" xmlns="http://www.w3.org/2000/svg"> <text x="5" y="20" font-weight="Normal"> Normal text </text> </svg> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <svg viewBox="0 0 200 300" xmlns="http://www.w3.org/2000/svg"> <text x="5" y="20" font-weight="bold"> bold text </text> </svg> </body> </html>
Producción: