Friday, April 30, 2010

Lesson 3 -- HTML

HTML - Hypertext Markup Language
What is this HTML about? It is a type of coding language, commonly used for websites. The basic format is as follows:

(html)
(head)
(title)...(/title)
(add Cascading Style Sheet (CSS) here, if any)
(/head)
(body)
...
...
(/body)
(/html)

One has to take note of other fundamental coding language like
(br) |Next Line
(p) |Paragraphings
(a href="..." target="...") |To link. Blogger should have this
|built in function.
(img src="..."/) |Has many more variables.
width="..." height="..." alt="..." |Variables to be inserted after img src in the ()
border="..." |width & height to determine picture's width and
|length. alt for alternate text when one's mouse
|is over the picture. Border is simply for
|border, the higher the value, the thicker it
|is.
(h1)...(/h1) , (h2)...(/h2) , etc. |Header numbers end at 6, largest header is one
|and 6 is the smallest header.
(strong)...(/strong) |Both are for text only. Can be applied in CSS.
(u)...(/u) |
(!---XXX----) |Comments, will not be counted as html.
(hr) |Horizontal rule, creates a horizontal line to
|separate.

THAT’S ALL FOR HTML. THERE ARE MANY MORE THINGS TO LEARN ABOUT HTML, I BELIEVE, AND THIS WILL BE SUBSTANTIAL ENOUGH TO SET UP A BASIC WEBPAGE.

No comments:

Post a Comment