0
How I join two local pages?
4 Answers
+ 9
Deepanshu Sahu you can link another page at same code by using jQuery
https://code.sololearn.com/WuL2r1j87mR9/?ref=app
+ 2
using <link> tag and the url/directory to the next html document
+ 2
Hii Deepanshu Sahu
<a href="local page link">
<button>Take me to the next page</button>
</a>
This is just a example to connect your pages...
Have a look on the lesson provided by sololearn
https://www.sololearn.com/learn/HTML/1031/?ref=app
And one more thing rephrase your question to "how to join..." Instead of "how I join..."
+ 2
Deepanshu Sahu you can use html anchor tag to redirect from one html page to another
<a href="relative url">Page name</a>
You can also link to specific parts of the page using id attribute and <a>