Creating Links in HTML

Ok well you want to link your pages to each other here’s what you need to do.

<a href="/page.html">Name of the Link</a>

Here is the code you use, the href is the page you want to link to.
If you want to a page that’s not a local file you can do.

<a href="http://google.com">Google</a>

You have to include the http:// if it’s another website.

Before the </a> is the name of your link, like this would be…

<a href="https://drawne.com">like this</a>

Leave a Comment