Basic HTML Tutorial 2
Last updated on July 28th, 2021
In this 2nd HTML tutorial, we are going to cover hyperlinks, email links, and heading tags. In the previous (and 1st) HTML tutorial we covered paragraphs, lists, bold and italic tags. If you’re new to HTML and missed out on the first tutorial you should probably read that one first as it covers the basics including the fundamentals of opening and closing tags.
Hyperlinks
Hyperlinks should be built with three elements:
- The link (which is compulsory)
- The command on how the link should open (optional)
- And the title of the link (recommended).
A link structured with these three elements will look like this <a href=”#” target=”blank” title=”link title”>. Lets take a more detailed look at these: