link the pages together, using relative linking
- Because the files are all in the same folder, you specify only the filename for the href attribute of the a tag
- In a small site like this, each page should link to every other page, unless you want the user to go through your site in a particular order (like in a tutorial)
- Use a consistent navigation scheme, meaning the links should be in the same place and in the same order on every page. For the page you are currently on, there should either be a link to itself, or just the text of the link should appear (without it being an actual link). You should not drop the text out of the navigation bar - this is confusing for the user.
- Your main navigation will look like this
<nav>
<ul>
<li><a href="index.html">Home</a>
<li><a href="school.html">School</a> (using what is appropriate for your site instead of School)
<li><a href="work.html".>Work</a> (using what is appropriate for your site instead of Work)
</ul>
</nav>