scrimba
HTML5 | Web development Bootcamp
Web development 30 Days Course - #HTML5 #17
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

Web development 30 Days Course - #HTML5 #17
AboutCommentsNotes
Web development 30 Days Course - #HTML5 #17
Expand for more info
index.css
run
preview
console
/*
These font families are available:
font-family: "Headland One", serif;
font-family: "Oswald", sans-serif;
*/
* {
box-sizing: border-box;
}
body {
font-size: 14px;
line-height: 24px;
font-family: "Headland One", Georgia, serif;
color: #333;
background: transparent url('https://subtlepatterns.com/patterns/45degreee_fabric.png');
}
#layout {
width: 80%;
margin: 0 auto;
position: relative;
padding: 1em;
background: rgba(0, 0, 0, 0.05);
}
header {
font-family: "Oswald", sans-serif;
}
header h1 a {
font-size: 3em;
line-height: 3em;
color: blue;
text-decoration: none;
}
header h1 a:hover {
text-decoration: underline;
}
nav ul {
display: inline;
}
nav ul li {
display: inline;
text-align: center;
padding: 0 0 15px 15px;
}
Console
index.html
-7:38