scrimba
HTML & CSS
Intro to the box model
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

Intro to the box model
AboutCommentsNotes
Intro to the box model
Expand for more info
index.html
run
preview
console
<html>
<head>
<title>The box model</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Intro to the box model</h1>
</header>

<main>
<h2>Width and height</h2>
<p>All elements have a width and a height.</p>
<p>We can control the width and the height very easily, but be careful when setting heights on elements, it can get you in trouble!</p>
</main>

<footer>
<p>the box model</p>
</footer>
</body>
</html>
Console
index.html
-6:23