I have looked into many different answers and found nothing. On this. Perhaps my code is just too weird, but I cannot move my main code under my Navigation Bar. Can someone please help me? Thanks in advance!
My code:
<div id="navBarWrapper">
<nav class="navBar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="HTML/aboutme.html">About Me</a></li>
<li><a href="HTML/codeblog.html">Code Blog</a></li>
<li><a href="HTML/contact.html">Contact</a></li>
</ul>
</nav>
</div>
<content>
<div id="mainContentWrapper">
<main class="mainContent">
Hi, This page is currently incomplete!
</main>
</div>
</content>
index.html CSS:
*,
*::before,
*::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.pageHeader div {
width: 100vw
}
.pageHeader h1 {
font-family: 'PT Sans', sans-serif;
}
`