scrimba
Figma to code
Drone page
Continuing 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

Continuing the HTML
AboutCommentsNotes
Continuing the HTML
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<div class="top-bg-container">
<div class="light-streaks"></div>
<div class="blue-col"></div>
</div>

<div class="container">
<nav>
<a href="#" class="logo"><span>Drone</span>.Series</a>

<img src="./assets/menu.svg" class="menu-btn">

<ul>
<li class="exit-btn"><img src="./assets/exit.svg"></li>
<li><a href="#">Home</a></li>
<li><a href="#">Races</a></li>
<li><a href="#">Register</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>

<script src="index.js"></script>
</body>
</html>
Console
/index.html
-5:16