scrimba
Movie Search App
Create Your First Component
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
Create Your First Component
Expand for more info
style.css
run
preview
console
html {
font-size: 10px;
}

* {
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
background-color: rgb(244,244,244);
color: #333;
}

p {
font-size: 1.6rem;
}

small {
font-size: 1.2rem;
}

.container {
margin: 0 auto;
max-width:1000px;
padding: 40px;
}

.title {
font-size: 4.4rem;
text-align: center
}
Console
/index.html
-5:58