|
Document formatting BY WIL GERKEN
Document formatting tags include line breaks, paragraph breaks, text centering, left alignment, right alignment, and block quoting. For more advanced document formatting tags, please refer to tables. Line breaks and paragraph breaks are the two most commonly used tags and they are also the first rule breakers we've encountered, because they do not come in sets like other tags. A single line break tag is <br> which only takes one line break. A paragraph break tag is <p> and it actually takes two line breaks. <p> = <br> + <br> For example:
Here is line 1 followed by a <p> tag. One important rule to be aware of is: you can NOT stack <p> tags, but you can stack <br> tags. For example:
Here is line 1 followed by four <p><p><p><p> tags.
Examples:
<div align=left>
This text is left aligned </div>
<div align=center>
This text is centered </div>
<div align=right>
This text is right aligned </div> Notice when turning off a tag, you do not repeat the arguments. In the above example, </div> was used, not </div align=right> to turn off the tag.
For example:
<blockquote>
<blockquote><blockquote>
|
Home .
About .
Syllabus .
Design Guide .
Message Board
©1997-98 Wil Gerken