HTML links

One of the specificities of a web document is the magic of being able to click on a piece of text or an image and getting sent to another page - this is a link.

to do this, you simply need to encapsulate the text or the image with the tag a:
<a href="next_page.html">to the next page</a>

Target is a useful attribute. It allows us to specify where the target page will be displayed, e.g.: target=princ will display the result of the link in the frame or window princ.

Be warned: if you want to create a link to another website, don't forget to put the full address including the http://, e.g.:
<a href="http://www.salemioche.net">creating a website</a>.
.:: THE END ::.