scrimba
7 CSS Challenges
Introduction - CSS Challenge 2 - Navbar Creation
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

Introduction - CSS Challenge 2 - Navbar Creation
AboutCommentsNotes
Introduction - CSS Challenge 2 - Navbar Creation
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<title>CSS Challenge 2 - Navbar Creation</title>
</head>
<body>
<div class="navbar">
<div class="title-container">
<h1 class="title">Navbar.</h1>
</div>
<div class="menu">
<p><a href="#" class="menu-item">Home</a></p>
<p><a href="#" class="menu-item">About Us</a></p>
<p><a href="#" class="menu-item">Our Mission</a></p>
<p><a href="#" class="menu-item">Services</a></p>
<p><a href="#" class="menu-item">Contact Us</a></p>
</div>
</div>
</body>
</html>
Console
/index.html
-1:43