Files
freeCodeCamp/mock-guide/spanish/html/attributes/font-size-attribute/index.md
Stuart Taylor 7da04a348b fix: Update packages and fix local dev (#26907)
<!-- Please follow this checklist and put an x in each of the boxes, like this: [x]. It will ensure that our team takes your pull request seriously. -->

- [x] I have read [freeCodeCamp's contribution guidelines](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md).
- [x] My pull request has a descriptive title (not a vague title like `Update index.md`)
- [x] My pull request targets the `master` branch of freeCodeCamp.
2018-10-23 18:48:46 +05:30

758 B

title, localeTitle
title localeTitle
Font Size Attribute Atributo de tamaño de fuente

Atributo de tamaño de fuente

Este atributo especifica el tamaño de fuente como un valor numérico o relativo. Los valores numéricos varían de 1 a 7 siendo 1 el más pequeño y 3 el predeterminado. También se puede definir utilizando un valor relativo, como +2 o -3 , que lo establece en relación con el valor del atributo de tamaño del elemento <basefont> , o en relación con 3 , el valor predeterminado, si no existe ninguno.

Sintaxis:

<font size="number">

Ejemplo:


<html> 
  <body> 
    <font size="6">This is some text!</font> 
  </body> 
 </html> 

Nota: The size attribute of <font> is not supported in HTML5. Use CSS instead.