←Back Next→

Tag Structure


When writing tags you will generally have:

A tag may also have attribues. This is a way to specify additional information about an element. For instance:
<a href="some_page.html" >some page</a>
where href="some_page.html" is a attrubute of that particular element.

Attributes should always have the same structure, the attribure name (in this case href) followed by an equals sign, and then the value contained in double quotes.