<PRE> Tag
Tag Type : Container Tag     
<PRE></PRE>
Attributes : none
     The text format enclosed will be display directly
Code :
<PRE>Hello!
                     How are you?     Welcome~
                      Good morning</PRE>
Output :
Hello
                How are you?     Welcome~
                 Good morning
<P> Tag
Tag Type : Empty Tag     
<P>
Attributes : align
     It is used to separate the paragraphs.It equals to 2 <BR> tag.
Code :
I am a boy<P>I am not a girl
Output :
I am a boy
             I am not a girl
align
It is used to set the position of next paragraph.It can be set as
Right,Left and Center
.
Code :
<P Align=left>Left!
          <P Align=Center>Center!
          <P Align=Right>Right!
Output :
Left!
Center!
Right!
Previous Page
   
Next Page