0
You can use links <a> to link pages.
0
You can also use a <nav></nav> container element and then nest <a> links into it as shown in example below:
<nav>
<a href='home.html'>Home</a>
<a href='friends.html'>Friends</a>
<a href='dashboard.html'>Dashboard</a>
</nav>
This code will create a navigation menu wit three links leading to their respective files.
Here we use href parameter to specify html file which will be opened by browser when we click the particular link.