+ 11
Link html page
How can i link my other html page in my new html code? Please Help me
7 Answers
+ 8
<a href="about.html">About page</a>
+ 5
Traditionally, you can use the anchor tags. In SoloLearn's Code Playground, there isn't really a way to do so (although there are ways to fake it) as it is more for practicing and storing code snippets than for a full-fledged website.
+ 4
1.make sure the html page you want to link to is in the same folder as the one you are working on.
2.add this
<a href = "theHtmlPage.html"> Html Page</a>
+ 2
An anchor tag is for links, so you use it for linking to other websites, pages within your website, and even sections of your page.
+ 2
But,if you code in sololearn,it's not going to save on your device or folder..
+ 1
To put it simply:
<a href="link here">Text</a>