This is a begginers tutorial. This page is not for experts who say "That's easy!". This page includes basic tags and the what to, and what not to do. This page also includes HTML color codes!
-
What is HTML?
-
HTML stands for Hyper-Text-Markup-Language. It is used for making web pages. I think it is really fun once you get the hang of it. HTML is one of the easiest languages to learn. It is also one of the best to learn if you are just beggining to learn about computers and making webpages.
-
Basic Tags
Your HTML document should always start with < html > and end with < /html >. Most of your tags should begin with < *** > and end with < /*** >. The
< body > tag should contain your information. The basic tags are < html > < head > < title > and < body >.
Other Tags
The other tags in HTML are quite simple. They are just dificult to remember.
< br > -- line break
< hr > -- horizontal ruled lines
< p > -- paragraph
< img src="location of image" > -- image
These tags do not require a closing tag
< h1>-< h6>--font size
< center > -- centers text
< font color="#hexidecimal" > -- font color
< body bgcolor="#hexidecimal" > -- background color
< body background="location of image"> -- background image
These tags require a closing tag
What to do
Always be open minded about your scripts. Try to learn more.
Check your scripts over and over for errors. If you are a begginer, start by editing oter scripts
What not to do
Never forget to close your tags. Do not intertwine.
example = WRONG
< html >
< head >
< title >
< body >
< /title >
< /head >
< /body >
< /html >
example = RIGHT
< html >
< head >
< title >
< /title >
< body >
< /body >
< /head >
< /html >
Do not type half of your script then leave it and then come back. This will cause you to forget what you did.
HTML COLOR CODES
WHITE = "FFFFFF"
BLACK = "000000"
BLUE = "00FFFF"
RED = "FF0000"
LIME GREEN = "00FF00"
YELLOW = "FFFF00"