scrimba
Introduction to HTML
NAVBAR & LIST ITEMS IN 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

NAVBAR & LIST ITEMS IN HTML
AboutCommentsNotes
NAVBAR & LIST ITEMS IN HTML
Expand for more info
index.html
run
preview
console
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body id="home" class="open-left">
<div class="center">
<header>
<nav>
Navigation
</nav>
</header>
<section>
<main>
<article>
<figure class="hero">
<img src="https://picsum.photos/1200/440/?image=201" alt="A laptop with a mouse on a desk and a pair of glasses."/>
<figcaption>
The figure image caption
</figcaption>
</figure>

</article>
</main>
</section>
<footer>
</footer>
</div>
<script type="text/javascript" src="index.js"></script>
</body>
</html>

<!-- Bonus Materials -->
<!-- Learn html vocab: http://apps.workflower.fi/vocabs/html/en -->
<!-- Images: https://www.w3schools.com/html/html_images.asp -->
<!-- Video Element: https://www.w3schools.com/html/html5_video.asp -->
Console
index.html#top
-2:50