Resources
helping you along the way
Knowledge is the foundation of all wisdom...
Resources >> Web workshops >> Alignment
Font Alignment
Various methods to align text on your web pages
Paragraph breaks
HTML does not recognize the returns that you enter when typing so you must specify where you want each paragraph.
Type <p> in front of each paragraph on your Web page. It is a good idea to end the paragraph but is not always necessary.
To end the paragraph type </p>
Aligning Text
Align is an attribute found inside a tag. To use the align attribute type the following:
<p align="direction"> where direction is either left, right, or center.
Line Breaks
Line breaks specify where each line of text begins.
<br> appears in front of each line of text.
Non-Breaking Spaces
Web browsers usually ignore extra spaces you add. In order to show additional spacing you must add a code for the blanks. The following code must be typed for each space:
add as many as are needed for your spacing.
