HTML Primer (c) 2004 Joseph C. Toscano, released under the MIT License. A website is written in a language called html, which is composed of elements called tags. A tag looks like this:
Most tags have an closing tag, which looks just like the first tag but with a "/" at the beginning, like this: Anything that is not in a tag will just show up as text on the website. Here are some simple tags in html: - the first tag on a website. This tells the web browser that the website is written in html. - the beginning of the header section of the website. This is where you specify things like the title of the page.- indicates that the section you are writing is part of a paragraph.
.
The "a" tag lets you put a link to another website in your page.
The "href" parameter is the website you want to link to. Any text placed
after the "a" tag and before the closing "a" tag, , will be the text
of the link. For example: CIF.
A note about colors in html:
You can specify thousands of different colors in html. To do this,
follow the pattern red, green, blue. When you use a tag that takes a color
parameter, you can set it to any color by entering it as "#RRGGBB". Each
of the letters represents how much red, green, and blue will be in the
color. The values are on a hexadecimal scale, so they range from 0-F as
follows: 0 1 2 3 4 5 6 7 8 9 A B C D E F. So, "#000000" represents black,
and "#FFFFFF" represents white.
More resources:
An organization called the World Wide Web Consortium sets the standards
for html. Their website contains the following guide to using html and it
is very useful: http://www.w3.org/MarkUp/Guide/.
Here are some more references and lists of html tags:
http://www.willcam.com/cmat/html/crossref.html
http://hotwired.lycos.com/webmonkey/reference/html_cheatsheet/
http://www.w3schools.com/html/html_reference.asp
You can also find many more by simply searching Google.