Tutorial Categories
Tools and Software
Site Search


Advanced Search
Tutorial Options
Popular Tutorials
  1. Photoshop Concept Car Makeover
  2. Photoshop Man Of Fire Part I
  3. Photoshop Magic Marker Effect
  4. Photoshop Man Of Fire Part II
  5. Photoshop Car Makeover Part II
No popular tutorials found.
Popular Authors
  1. Cory Crampton
  2. Daniel Phillips
  3. tanmay goswami
  4. Rails Forum
  5. Brendan Horverson
  6. CodeCrunch Tutorial Bot
  7. PhotoshopBee .com
  8. Jamie Lewis
  9. Nick Cote
  10. Luther Avery
No popular authors found.
 »  CodeCrunch  »  HTML and CSS  »  HTML For The Newcomer: Part 5
HTML For The Newcomer: Part 5
By Daniel Phillips | Published  06/29/2006 | HTML and CSS | This tutorial viewed 1048 times
HTML For The Newcomer: Part 5

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.




Comments