previous page main page next page

Text Alignment

Headings and paragraphs can be aligned left, centre or right. Some examples are shown below. You should try them for yourself.
 

<H3 ALIGN="right">Hi there!</H3>
 

<P ALIGN="center"><Hi there. This paragraph can be aligned left, right or centre. but remember to use the American spelling for the tags!</P>
 

Lists

There are tags which are used to control the layout of different types of lists. Some of the common types are shown below...

An unordered list is coded like this...
 

<UL>
<LI>monday
<LI>tuesday
<LI>wednesday
</UL>
 

...and gives...
 


 

Or we could have...
 

<UL>
<LI TYPE=DISC>monday
<LI TYPE=CIRCLE>tuesday
<LI TYPE=SQUARE>wednesday
</UL>
 

...which gives...
 


 

Ordered lists, on the other hand, are coded like this...
 

<OL>
<LI>monday
<LI>tuesday
<LI>wednesday
</OL>
 

...and appear as...
 


 

previous page main page next page © 1999 ePublish Scotland