scrimba
Frontend Career Path
Essential CSS concepts
Build a Coworking Space Site
Add the image banner
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
Add the image banner
Expand for more info
index.css
run
preview
console
body {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
color: #282828;
}

header {
background-color: #282828;
color: whitesmoke;
}

.logo {
font-size: 18px;
font-weight: 700;
}

ul {
display: flex;
list-style-type: none;
align-items: center;
margin: 0;
padding: 25px;
gap: 10px
}

li {
cursor: pointer;
}

.icon {
width: 25px;
}

.align-right {
margin-left: auto;
}

h1 {
font-size: 40px;
font-weight: 400;
margin: 30px 25px;
}

.item-img {
width: 100%;
}

.caption {
margin: 0 25px;
}

Console
/index.html
-4:46