Introduction to HTML tags
Tags
Special elements or code defined in a page.
Tag begins with < and followed by the name > and ends with < /name >
There are four basic tags required for this. Some of the tags are HTML, HEAD, TITLE, BODY and so on.
Tags have to end / close with < / tag name >
Hello there!
A Tag has the following sequence of HTML coding
< HTML >
< HEAD > A header tag allows to write about the code... can have other tags too: within header - like
< TITLE > The Window Title goes here... < /TITLE >
< /HEAD > The end of the Header
< BODY > The actual HTML code appears here... more lines of text and the
< body color= color > defines the background colour
< font color=color > defines the color of the font : althought they could appear anywhere
< / BODY > end of the BODY tag
< /HTML > code should be the end of HTML tag.