scrimba
Frontend Career Path
Essential CSS concepts
Challenges
CSS Fundamentals: Solution #3 - Setting up the typography
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

CSS Fundamentals: Solution #3 - Setting up the typography
AboutCommentsNotes
CSS Fundamentals: Solution #3 - Setting up the typography
Expand for more info
css
style.css
run
preview
console
body {
text-align: center;
font-family: 'Roboto', sans-serif;
}

.container {
width: 570px;
margin: 0 auto;
}
Console
/index.html
-2:59