Pages

Saturday

HTML Tag Info



Creating an HTML Page

Every page must have the following tag attributes:
[html]
[head][title]Actual Title[/title][/head]
[body]
followed by the body text. The following tags can be used withing the body text:[p] to space between paragraphs; [br /] line break; [hr /] horizontal rule


Text Alignment & Formatting


[div] ... [/div] Denotes a region to be formatted
[p align="left"] or "right" or "center"; [p] default is left
[ul] ... [/ul] Creates an unordered bulleted list
[ol] ... [/ol] Creates an ordered numbered list
[li] ... [/li] list item for use with "ul" or "ol"
Use the "type=.." to designate either numerals, or bullets to be used with "ol" or "ul"
"A", "a", "I", "i", "1.", or "disk", "circle" or "square" to designate bullet
[pre] ... [/pre] forces Courier New monospaced text, preserving sspaces and line breaks

Changing Font Size and Color


[font size="1thru7" color="black,white,red,green,blue,yellow,aqua,fuchsia,gray,lime,maroon,purple,navy,olive,silver,or teal"[/font]
To insert special characters re: © use the "&" symbol followed by the characters ascci number or code name


Creating a Hyperlink

[a href="followed by the ling address http://riverratken.backpackit.com/page/932535"to force opening in a seperate window target="_blank"]
follow this by what you want the link to read click here to view. [/a]
Example: click here to view.


Creating Text Links


To link within a page, first, create a tag [a id="top"][/a] To link to the tag use the href attribute [a href="#top"]Return to Index. [/a]
To link to another page include the page address (name) followed by # and the anchor name. [a href="page.htm#tag25"]the anchor name. [/a]
To link to your email address type [a href="mailto:kccandcj@yahoo.com"]Send me an email message.[/a]

No comments: