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');
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How can you define the thickness of an element, and how can you make italic?

A

font-weight 800;

font-style: italic;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can you modify the spacing between lines, words and letters?

A
  • line-height
  • word-spacing
  • letter-spacing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly