top of page

LINKS
The whole point of web pages / the internet is to be able to create links between information.
The HT in HTML stands for 'hypertext' and that means a system of linked text.
To create a link, we're going to use the anchor tag or <a></a> in combination with the href attribute.
ATTRIBUTES
Extra bits of information that appear inside the opening tag and their values sit inside quotation marks.
Example:
<a href="value">
Title of Link
</a>.
href Attribute
The href attribute contains the destination of the link.

But we can also link to any file on the web:

bottom of page