How I join two local pages? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How I join two local pages?

7th Dec 2020, 6:25 AM
Deepanshu Sahu
Deepanshu Sahu - avatar
4 Answers
+ 9
Deepanshu Sahu you can link another page at same code by using jQuery https://code.sololearn.com/WuL2r1j87mR9/?ref=app
7th Dec 2020, 7:03 AM
ㅤㅤㅤ
+ 2
using <link> tag and the url/directory to the next html document
7th Dec 2020, 6:31 AM
✳AsterisK✳
✳AsterisK✳ - avatar
+ 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..."
7th Dec 2020, 6:33 AM
Piyush
Piyush - avatar
+ 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>
7th Dec 2020, 8:11 AM
maazulhaq
maazulhaq - avatar