The Line Break Tag
<p>line <br>break<br> line <br> Break </p>
This tag is for line breaks, this code will display something like this in your browser:
line
break
line
break
The Comment Tag
<!-- This is a comment -->
This tag is used to insert comments into a HTML document, comments are only visible for somebody viewing the code, and are useful for reminding yourself of things.
Body Attribute Tags
<body bgcolor="">
Already mentioned this one, so no explanation required! Defines background colour.
<body text="">
Put the colour or hex code between the "", that you want text in your document to be.
<body link="">
Put the colour or hex code between the "", that you want unclicked links in your document to be.
<body vlink="">
Put the colour or hex code between the "", that you want clicked links in your document to be.
<body alink="">
Put the colour or hex code between the "", that you want links to be when your clicking them.