TIPOGRAFIA vs FONT

typeface is what we see. It is the artistic impression of how text looks, feels, and reads.

font is a file that contains a typeface. Using a font on a computer allows the computer to access the typeface.

FONT PROPERTIES

Color

html {
	color : #effeea
}

Font-Family

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

Font-Size

body {
  font-size: 14px;
}

Font Style

italic, oblique, and inherit

.special {
  font-style: italic;
}

Font Variant

.firm {
  font-variant: small-caps;
}

Font Weight

The numeric values 100, 200, 300, 400, 500, 600, 700, 800, and 900

.daring {
  font-weight: bold;
}

Line Height