scrimba
Frontend Career Path
Web dev basics
Build a digital Business Card
Web-safe fonts
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

AboutCommentsNotes
Web-safe fonts
Expand for more info
styles.css
run
preview
console
body {
margin: 20px;
/*
Challenge:
Set the font to Verdana.
*/
}

.avatar {
width: 150px;
}

.card {
width: 400px;
margin-left: auto;
margin-right: auto;
padding: 20px;
display: flex;
justify-content: space-around;
text-align: center;
background: #ddebf8;
color: #2b2839;
border-bottom: 6px solid #d8cefe;
}

.border-blue {
border: 1px dotted blue;
}
Console
/index.html
-5:05