HTML links - hyperlinks
HTML links are basically hyper links which upon being clicked redirect you to another webpage, load pdf file, view image, etc.
How do we define an HTML link?
<a href="url">Link label text</a>
<a href="http://www.google.com">GOOGLE - Search Engine</a>

We learned how to do a hyper link under this lesson. the hrev specifies the link URL of a web page or a document The Link Label specifies or explains the link so that the user knows what he's opening upon a particular link being clicked.
Comments
Post a Comment