This chapter is from the book
The Paragraph Element
In order for the browser to know that there is a distinction between the first and second paragraph of text, you will need to instruct it to format it this way. This is done with the paragraph p element.
Look at the code in Listing 2, which shows the paragraph element in an i-mode page. Within the browser, the paragraphs will be separated with two carriage returns.
Listing 2 - Basic i-mode Page Without Text Formatting Elements
<html> <head> <title>What's New</title> </head> <body> Students from the University of Art and Design in Helsinki have engaged in a joint project with Adcore. <p> Future Impulses will investigate how retail shops are to operate in the future, and to build concepts using research results. </body> </html>