Hello Please which code can be used to open different pages on website | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Hello Please which code can be used to open different pages on website

E.g home, about , contact

17th Nov 2020, 7:57 AM
Blesinto
3 Answers
+ 3
There are many pl to do it tho, like ktor, django, express, spring depends on your interest
17th Nov 2020, 8:02 AM
Ananiya Jemberu
Ananiya Jemberu - avatar
+ 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.
17th Nov 2020, 6:21 PM
Chris Coder
Chris Coder - avatar
0
or just a simple php
17th Nov 2020, 8:16 AM
Rei
Rei - avatar