Unterschiedliche Schriftschnitte

Open Sans | Google Fonts

Hallo! Mein font-weight ist 300

Hallo! Mein font-weight ist 300, 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 800

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

.s_300 {
  font-weight: 300;
}
.s_300i {
  font-weight: 300;
  font-style: italic;
}
.s_400 {
  font-weight: 400;
}
.s_400i {
  font-weight: 400;
  font-style: italic;
}
.s_800 {
  font-weight: 800;
}
.s_800i {
  font-weight: 800;
  font-style: italic;
}