+ 2
Hello Please which code can be used to open different pages on website
E.g home, about , contact
4 Antworten
+ 3
There are many pl to do it tho, like ktor, django, express, spring depends on your interest
+ 1
<nav>
<ul>
<li><strong>Home</strong></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
After you create your navigation link. You have to create separate HTML files.
about.html and contact.html
So when you click your links it opens a new page.
0
or just a simple php