HTML
A basic web-page
| HTML | Effect | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| <HTML> | |||||||||
| <HEAD> | Not visible to the user. | ||||||||
| <META NAME="description" Content="An example HTML page"> | May be used by search engines etc. | ||||||||
| <META NAME="keywords" Content="HTML, hyper text markup language, www"> | ditto | ||||||||
| </HEAD> | |||||||||
| <BODY> | |||||||||
| <H2 ALIGN="center">HTML</H2> (a level 2 heading; H1 is biggest.) | HTML(a level 2 heading; | ||||||||
|
<P>A paragraph of text.</P>. <P>And another.</P>. <P><B>Bold</B>, <I>italic</I>, <U>underlined</U>.</P> |
A paragraph of text. And another. Bold, italic, underlined. | ||||||||
| <UL> <LI>dotted/ bullet <LI>list </UL> |
| ||||||||
| <DL> <DT>indented <DD>list <DT>DT-indentation <DD>DD-indentation </DL> |
| ||||||||
| <OL> <LI>numbered <LI>list </OL> |
| ||||||||
| "Some quoted text." (see <A HREF="Special-Chars/">special chars</A>.) | "Some quoted text." (see special chars.) | ||||||||
| <HR SIZE="2" NOSHADE> (a horizontal line) | (a horizontal line) | ||||||||
|
<TABLE BORDER="1" CELLSPACING="0" CELLPADDING="2"> <TR><TH> col-1 </TH><TH> col-2 </TH></TR> <TR><TD> 1.1 </TD><TD> 1.2 </TD></TR> <TR><TD> 2.1 </TD><TD> 2.2 </TD></TR> <TR><TD> 3.1 </TD><TD> 3.2 </TD></TR> </TABLE> |
| ||||||||
| </BODY> | |||||||||
| </HTML> |