Tell us what’s happening:
Can’t solve User Story #15 on Build a Technical Documentation Page Certification Project.
I tried to do it the same as in the Building a Piano course, and also researched old forums but had no success. Can someone please guide me? Thank you
Your code so far
<!-- file: index.html -->
<!DOCTYPE HTML><HTML LANG="EN">
<HEAD>
<META CHARSET="UTF-8">
<META NAME="VIEWPORT" CONTENT="WIDTH=DEVICE-WIDTH INITIAL-SCALE=1.0">
<TITLE>TECHNICAL-DOCUMENT</TITLE>
<LINK REL="STYLESHEET" HREF="STYLES.CSS">
</HEAD>
<BODY>
<MAIN ID="main-doc">
<nav id="navbar">
<header class="nav-header">Technical Document</header>
<a class="nav-link" href="#Main_Section_1">Main Section 1</a>
<a class="nav-link" href="#Main_Section_2">Main Section 2</a>
<a class="nav-link" href="#Main_Section_3">Main Section 3</a>
<a class="nav-link" href="#Main_Section_4">Main Section 4</a>
<a class="nav-link" href="#Main_Section_5">Main Section 5</a>
</nav>
<section class="main-section" id="Main_Section_1" ><header>Main Section 1</header>
<p>Information of Section 1</p>
<p><ul><li>Bullet point 1 <code>.html</code></li></ul></p>
</section>
<section class="main-section" id="Main_Section_2" ><header>Main Section 2</header>
<p>Information of Section 2</p>
<p><ul><li>Bullet point 2 <code>www.</code></li></ul></p>
</section>
<section class="main-section" id="Main_Section_3" ><header>Main Section 3</header>
<p>Information of Section 3</p>
<p><ul><li>Bullet point 3 <code>.js</code></li></ul></p>
</section>
<section class="main-section" id="Main_Section_4" ><header>Main Section 4</header>
<p>Information of Section 4</p>
<p><ul><li>Bullet point 4 <code>https//:</code></li></ul></p>
</section>
<section class="main-section" id="Main_Section_5" ><header>Main Section 5</header>
<p>Information of Section 5</p>
<p><ul><li>Bullet point 5 <code>Array</code></li></ul></p>
</section>
</MAIN>
</BODY>
</HTML>
/* file: styles.css */
#navbar{background-color: #00471b;
width: 992px;
height: 290px;
margin: 80px auto;
padding: 90px 20px 0 20px;
}
@media(max-width: 768px)
#navbar{width:358px;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36
Challenge: Technical Documentation Page - Build a Technical Documentation Page
Link to the challenge: