Unterschiedliche Schriftschnitte

Lato, Google Fonts

Hallo! Mein font-weight ist 100

Hallo! Mein font-weight ist 100, mein font-style ist italic

Hallo! Mein font-weight ist 400

Hallo! Mein font-weight ist 400, mein font-style ist italic

Hallo! Mein font-weight ist 900

Hallo! Mein font-weight ist 900, mein font-style ist italic

.s_100 {
  font-weight: 100;
}
.s_100i {
  font-weight: 100;
  font-style: italic;
}
.s_400 {
  font-weight: 400;
}
.s_400i {
  font-weight: 400;
  font-style: italic;
}
.s_900 {
  font-weight: 900;
}
.s_900i {
  font-weight: 900;
  font-style: italic;
}