Now we are going to look as some other important features. Under the
Insert , click on Lists and Misc Tags . The menu below
should now appear.
To add a break from the a line or image (as we will see later) can be very useful. The code for a line break is <BR>.
The Horizontal Rule is also another nice feature. This
allows the user to draw a line across the page. This is useful in
separating documents on a page. When you click on this, the
Horizontal Rule menu should appear.
Here a plain horizontal line can be drawn, or you can change the line by
adding some enhancements to it.
Here is an example:
<BODY>
Here is the first paragraph of text. I will use a plain horizontal line to divide the first paragraph and the second paragraph of text. Here goes.
<HR>
Now here is the second paragraph. There should now be a horizontal line separating the first and the second paragraphs.
</BODY>
HERE
is the associated document.
Now here is how to center some text. Go to the Insert menu,
select Block Style Tags , then select Centered . This
will center the text which you place inbetween the two center tags.
Here is an example:
<BODY>
This text is not centered
<P>
<CENTER> This text is centered
<P>
</CENTER>
<CENTER>
<B> This text is bolded and centered
</B>
</CENTER>
</BODY>
HERE
is the associated document.