|
|
<A> <Basefont> <Body> <B> <Br> <Center> <Em> <Font> <Html> |
<H2> <H3> <H4> <H5> <H6> <Hr> <I> <Img> <Li> |
<Ol> <P> <Pre> <Strong> <Sub> <Sup> <Table> <U> |
This tag is made to put some comment of yourself in the HTML document,
it's not shown in your HTML document only if you view the source of your
document.
Example;
<-- This is a comment --<
This tag is used to make links in your HTML document.
The <A href="????.htm"> (the ???? must be replaced by a URL or document)
were you want the link to go to.
Example;
<a href="http://www.microsoft.com">Visit Microsoft</a>
is shown in your browser as Visit Microsoft
The text that's underlined is your linking text, this text is seen by the person
who views the htm or html document you made.
This one is very simple it makes text look bold.
Example;
Text <B>Bold</B>
is shown in your browser as;
Text Bold
This has the same effect as placing a Enter on your keyboard,
It's just that you're going to the next line of text, or image.
Example;
text<br>text2;
Is shown in your browser as;
Text
Text2
This makes text or images to center on the screen.
Example;
<Center>text</center>
is shown in your browser as;
This is Heading 1,
This tag makes text looks like a heading, how lower
the number of the heading how bigger the text appears in your browser
Example;
<h1>Text</h1>
is shown in your browser as;
This is Heading 2,
This tag makes text looks like a heading.
See H1 for more info
Example;
<h2>Text</h2>
is shown in your browser as;
This is Heading 3,
This tag makes text looks like a heading.
See H1 for more info
Example;
<h3>Text</h3>
is shown in your browser as;
This is Heading 4,
This tag makes text looks like a heading.
See H1 for more info
Example;
<h4>Text</h4>
is shown in your browser as;
This is Heading 5,
This tag makes text looks like a heading.
See H1 for more info
Example;
<h5>Text</h5>
is shown in your browser as;
This is Heading 6,
This tag makes text looks like a heading.
See H1 for more info
Example;
<h6>Text</h6>
is shown in your browser as;
This tag displays a horizontal rule
The appearence of this rule can be edited with the atrributes;
width="# pixels" = width of rule.
size="pixels" = height of rule.
color="hex code or name color" = color of rule.
align="Center, Left, Right" = alignment of rule.
Noshade, = no shading.
Example;
<hr width="50">
is shown in your browser as;
With this tag you can select size, face and color of a font, with the following atrributes.
Size= "+ 1-5, - 1-5 or just pixels"
color= "#hexcode or color name"
face= "arial, comic sans, etc. etc.", BEWARE ! Use commom fonts that everybody got at home !
Example;
<Font color="#dd0000 face="Comic Sans MS" size="+3">This is the font tag</font>
is shown in your browser as;
This is the font tag
This tag indicates to the browser that the document that's gotta be viewed is a HTML document
you must place this tag on the beginning of your document and at the end of it,
ll tags must be used within this tag.
Example;
<HTML>
Rest of document
</HTML>
This one is very simple it makes text look italics.
Example;
Text <I>Italics</I>
is shown in your browser as;
Text Italics
With this tag you can place images in your HTML document.
The attributes for this tag are;
src="name of image *.PNG, *.GIF *.JPG"
Width="width in pixels"
Height="height in pixels"
Border="border in pixels(only if image is linked within anchor tag)"
Vspace="vertical space in pixels"
Hspace="horizontal space in pixels"
Alt="Alt text"
Align="alginment, top, center, texttop, absmiddle, absbottom, baseline, left, right"
Example;
<Img src="image.jpg" width="100" height="100" alt="this is the al text">
is shown in your browser as;
This tag is used for list items it has two variatons, <UL> and <OL>, OL stands for Orderned list and UL for Unordened list. To see how this tag work look at the example below. Example;
<LI>text 1
<LI>text 2
is shown in your browser as;
This tag is making an open line it has the same effect as two enters in your text editor.
Example;
Text <p>text
is shown in your browser as;
Text
text
This tag is easy to use all text in the PRE tag is identical
on your browser as well on your html file.
Example;
<pre>
hello
this is the second rule
no brakes
</pre>
is shown in your browser as;
hello this is the second rule no brakes
The subscript tag makes text look smaller and places it low, as the example shows;
Example;
The <sub>Example</sub> of subscript.
is shown in your browser as;
The Example of subscript.
The superscript tag makes text look like a exponent, as the example shows;
Example;
The <sup>Example</sup> of superscript.
is shown in your browser as;
The Example of superscript.
This one is very simple it makes text look Underlined.
Example;
Text <U>Underlined</U>
is shown in your browser as;
Text Underlined