0
add another html page
Hi there! I want to add another html page to my main html pg so if anyone click the sign in in the main pg, the browser opens the other html pg I coded....can u guide me pls?
5 Respuestas
0
Thanks Julien, you copied my answer format. :)
Anchor tag, here since HTML1.
<a href="myotherpage.html">next page click me</a>
Cross-directory...
<a href="folder/myotherpage.html">lets gooooo</a>
+ 3
i didnt copy it but thanks
+ 2
you have to create a link wich will open the path where the other html file is saved.
Example:
<a href="index2.html">fnfkfk</a>
If you have it inside an other folder just insert the path before the file name, like this:
<a href="/folder/index2.html"><click me!</a>
+ 2
that link , <a href= ></a> is known as hyperlink, you can learn about that.
+ 1
tnx all