Form 1 - HTML Introduction - HTML Links - 05
Form 1 - HTML Introduction - HTML Links - 05
When you move the mouse over a link, the mouse arrow will turn into a little
hand.
Note: A link does not have to be text. A link can be an image or any other
HTML element!
<a href="url">link text</a>
Clicking on the link text, will send the reader to the specified URL address.
Example
This example shows how to create a link to W3Schools.com:
<a href="https://www.w3schools.com/">Visit W3Schools.com!</a>
Try it Yourself »