scrimba
HTML & CSS Challenges
Challenge 6: Styling the subheadings
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

Challenge 6: Styling the subheadings
AboutCommentsNotes
Challenge 6: Styling the subheadings
Expand for more info
css
style.css
run
preview
console
body {
margin: 0;
}

/* solution with h1 only */

h1 {
background-color: #281B2D;
color: #fff;
text-align: center;
font-size: 72px;
margin-top: 0;
padding: 25px 0;
}


/* solution with header styled */

/* header {
background-color: #281B2D;
color: #fff;
text-align: center;
padding: 20px;
}

h1 {
font-size: 72px;
margin: 0;
} */
Console
/index.html
-1:03