Typography Flashcards
1
Q
How can you include a custom font that you downloaded as a font-family to one of your elements?
A
Top of stylesheet: @font-face { font-family: 'Light-Font'; src: url('../fonts/font-family.tf') format('truetype'); }
2
Q
How can you define the thickness of an element, and how can you make italic?
A
font-weight 800;
font-style: italic;
3
Q
How can you modify the spacing between lines, words and letters?
A
- line-height
- word-spacing
- letter-spacing