Page 92 - Computer Class 06
P. 92
Starting a New Paragraph
HTML does not recognise the returns or other extra white space that you enter in your
text editor. To start a new paragraph in your web page, you use the P tag.
You must enclose each paragraph in opening and closing P tags. If you don’t close
them, styles won’t be applied properly.
The code is as follows:
<HTML>
<HEAD>
World of Books
<TITLE>
Books
</TITLE>
</HEAD>
<BODY>
Books are an important part of our life. We read many kinds of books. We study text
books at school that are part of our syllabus.
<p>
We also have story books that we read for leisure and fun. We can get them from the
school library.
</p>
<p>
I love reading children’s
stories published in
colourful books, as they
are beautifully presented.
</p>
</BODY>
</HTML>
Save the Notepad
document.
Computer-6 92 Computer-1