0
How to add different pages with my homepage?
I want to add a website like facebook but I can't join my additional pages with my main page where user I'd, password is present.
3 Respuestas
+ 3
Yes Emmanuel is correct, but in order to achieve this you will need to copy and paste the index file>rename it (ex: about.html)> change its contents. once you do that when you have a link to the page you will do
<a href="about.html">About us</a>
Please let me know if it works or have anymore questions regarding multipaged websites :)
+ 1
well this is quite simple though.Once you have created your index(home) page
you can use links to join the pages together
<a href=""></a>
so say for example i want to link about page so a user can click on the about button in the home page and is redirected there.
<a href="about.html">About</a>
if u still are not clear it will be best to post your code here then we help you out.
+ 1
Thank you.