scrimba
HTML & CSS
Build a Space Exploration Site
Add an underline using a span
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

Add an underline using a span
AboutCommentsNotes
Add an underline using a span
Expand for more info
styles.css
run
preview
console
body {
color: white;
background-image: url("images/universe.jpg");
background-size: cover;
text-align: center;
font-family: 'Orbitron', sans-serif;
}

.btn {
padding: 6px 12px;
background: white;
border: none;
font-family: 'Orbitron', sans-serif;
}

/*
Challenge:
Add the underline to the title using a <span> and a class.
*/
Console
/index.html
-1:46