Getting Started
HTML: The Basics
More Than HTML: Audio
Help Desk: Quick Reference Free Stuff:
|
Page Formats Formatting text and images on the page is very important in page design. I have seen many, many pages where everything from text to images are centered down the middle of the page. That method is not good page design. There are many different ways to format a page, including using lists and tables. Click on the command to view explainations and examples:
<P> Paragraph command. Separates each "block" of text by a blank line. Unlike the <BR> command which skips to the next line, there will be one blank line in between paragraphs. Example:
<UL> and <OL> Unordered List and Ordered List. These two commands will indent text by 5 spaces. Another command that accompanies these commands is: <LI> List Item. The list item command will place a "bullet" on the page when used with <UL> and a "number" on the page when used the <OL> command. The attributes for the list item command will produce different type bullets and numbers. Example:
<UL>
Reads:
And with the ordered list:
Reads:
You can place ordered or unordered lists inside lists: Example:
<ol type="I">
Reads:
Notice that I used both the <ol> and <ul> commands and placed the type= attribute in the command. If you use the type= attribute in the <ul> command it will effect the entire list. Using the type= attribute in the <li> command will effect the list item and subsequent items until another type is specified. Be sure to end your lists with </ol> or </ul> command. <CENTER> The center command can be used to center the entire page or a single item. Example:
Reads:
Be sure to end the center command where you want centering to end. Otherwise everything from the point of insertion will be centered. <BLOCKQUOTE> Blockquote will indent items 5 spaces. Example:
Reads:
This paragraph is indented by using the blockquote command. Each line of text will be indented until the blockquote command is endend. Quote can also be used to indent images, tables, forms, or any other item on the page. <NOBR> This command prevent text from wraping to the window. Example:
Be sure to end the no break command where you want it to end, as you can see the window does not scroll horizonally for the nobreak command.
|