scrimba
Introduction to CSS
Working with Fonts in CSS
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

Working with Fonts in CSS
AboutCommentsNotes
Working with Fonts in CSS
Expand for more info
index.css
run
preview
console
@import url('https://fonts.googleapis.com/css?family=Black+Han+Sans');
body {
background-color: #3D85C6;
color: rgba(0,0,0,.8);
height: 95vh;
display: flex;
justify-content: center;
align-items: center;
}

.font {

}
Console
index.html
-3:44