scrimba
Figma to code
Car Sales Site
Finishing the HTML
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

Finishing the HTML
AboutCommentsNotes
Finishing the HTML
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>

<div class="container">
<header>
<div class="headings">
<h1>Available Cars</p>
<p>There are 15 cars that match your criteria</p>
</div>
<div class="options">
<input type="text" class="search">
<img src="./assets/menu.svg" class="menu">
</div>

<div class="filter">
<div class="chk-container">
<input type="checkbox" id="new">
<label for="new">New cars</label>
</div>
<div class="chk-container">
<input type="checkbox" id="used">
<label for="used">Used cars</label>
</div>
<div class="chk-container">
<input type="checkbox" id="dealer">
<label for="dealer">Dealership</label>
</div>
<div class="chk-container">
<input type="checkbox" id="owner">
<label for="owner">For sale by owner</label>
</div>
</div>
</header>
</div>

<script src="index.js"></script>
</body>
</html>
Console
/index.html
-4:20