+ 1
How do you insert a web link in html document
HTML linking
2 Answers
+ 1
Using anchor tag.
For eg:- <a href="Hello.html"> Hello </a>
Here a is the anchor tag, inside the href attribute, the name of the webpage which will be opened is there in inverted commas. The word *Hello* is now a link, if you click on it then it will redirect you to the webpage *Hello.html*.