Basic HTML





<html> - Always start designing a page with this tag. It's where your page start. </html> - Ends the html tag. <body> - All your HTML goes between this tag. </body> - Ends the body tag.
<br> - Space your sentences. <p> - Starts a paragraph. </p> - Ends a paragraph. <hr> - This is like a divider.
Title <title>Name of TITLE</title> EXAMPLE:<title>Basic HTML</title> RESULT: "Look at the top left hand corner of your broswer"

Background Color <body bgcolor="Color"> EXAMPLE: <body bgcolor="black"> RESULT: "Look at the background color"




Fonts Size/Face/Color

<font size="Size">TEXT</font> <font face="face">TEXT</font> <font color="color">TEXT</font> To make things easier, just put all three together - <font size="size" face="face" color="color">TEXT</font> EXAMPLE: <font size="5"><font face="tahoma"><font color="blue">TEXT RESULTS:
TEXT

Note:
-You can put all three codes together.

Marquee
<marquee direction="left">TEXT</marquee>
Example TEXT
<marquee direction="right">TEXT</marquee>
Example TEXT
<marquee behavior="alternate">TEXT</marquee>
Example TEXT


Gifs
<img src="stop.gif" align="left" width="45" height="45">
Example

<img src="stop.gif" align="right" width="45" height="45">
Example

<img src="stop.gif" align="center" width="45" height="45">
Example



home