Tell us what’s happening:
Describe your issue in detail here.
i can’t fix number 6 of the user stories
- The
.main-section
elements should contain at least fivecode
elements total (not each)
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Technical Documentation Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main id="main-doc">
<section class="main-section" id="one">
<header>one</header>
<p></p>
<p></p>
<ul><li></li></ul>
<ol><li></li></ol>
</section>
<section class="main-section" id="two">
<header>two</header>
<p></p>
<p></p>
<ul><li></li></ul>
<ol><li></li></ol>
</section>
<section class="main-section" id="three">
<header>three</header>
<p></p>
<p></p>
<ul><li></li></ul>
<ol><li></li></ol>
</section>
<section class="main-section" id="four">
<header>four</header>
<p></p>
<p></p>
<ul><li></li></ul>
<ol><li></li></ol>
</section>
<section class="main-section" id="five">
<header>five</header>
<p></p>
<p></p>
<ul><li></li></ul>
<ol><li></li></ol>
</section>
<nav id="navbar">
<header>technical documentation</header>
<a href="#one" class="nav-link">one</a>
<a href="#two" class="nav-link">two</a>
<a href="#three" class="nav-link">three</a>
<a href="#four" class="nav-link">four</a>
<a href="#five" class="nav-link">five</a>
</nav>
</main>
</body>
</html>
/* file: styles.css */
#navbar{
align: left;
display: visible;
}
@media{
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36
Challenge: Technical Documentation Page - Build a Technical Documentation Page
Link to the challenge: