| The heading element
is use to provide a heading for the contents displayed in the web
page, basically HTML recognize six heading levels written as
<H1> to <H6>.
The paragraph tag <P> is use to mark
the start of a new paragraph.
The breaks <BR> element is used to
specify line breaks in an HTML document.
the example bellow illustrate the use of these three elements:
<HTML>
<HEAD>
<TITLE>Paragraph, Breaks and Heading</TITLE>
</HEAD>
<BODY>
<P>This is a paragraph generated by the P tag</P>
<BR>
Their is a page break here
</BR>
<H1>First letter heading</H1>
<H2>Second letter heading</H2>
<H4>Fourth letter heading</H4>
</BODY>
</HTML>
Click here to
see the output of this code.
If you have followed this tutorial from the
beginning i believe that by now you should be able to create a
simple html page although this tutorial did not cover some aspect of
HTML, we advise that you get a good book on html to improve your
self the more. |