In this final part of the series we will discuss other random tags and values that we have not covered in other tutorials. This one is going to be fast paced as there is lots to fit in, try and keep up!
The Mailto tag
<a href="mailto:email@codecrunch.com">Email Me Please</a>
This tag is known as the "mailto tag" It is basically a link that opens an email client and puts your email addres in the send field, its just like a normal link, the main differences being the mailto: Which comes before the desired email address.
The Marquee tag
<marquee>
<b> kool </b>
</marquee>
This tag is used to make anything between the opening and closing tag scroll sideways across the screen, rather simple really! More on this tag will be found in the Intermediate tutorials.
The Heading Size tag
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<h4>This is a heading</h4>
<h5>This is a heading</h5>
<h6>This is a heading</h6>
This tag is for specifying the size of a heading, <h1> being the biggest, and <h6> being the smallest! Be careful and remember to end this tag or you will have the whole document the same size as the title.