Tag Container
Start tag
, e.g.: <
font>
Attribute
, e.g.:
color=#ff0000
Contents
, e.g.:
I'm red
End tag
, same as start tag, but with "/", e.g.:
</font>
All together:
<font color=#ff0000>I'm red</font>
gives:
I'm red
back