scrimba
Frontend Career Path
Web dev basics
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

To see this lesson you need to be logged in. Joining Scrimba is free and gives you access to 20+ courses.Sign up
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