HTML
Design you web page by yourself
Paragraphs

To define a paragraph you must use the <p> tag. The paragraph is inserted between the <p> and </p>tags. Notice that browser will ignore all of the carriage returns typed into your text editor. However when a browser sees the paragraph tag, it inserts a blank line and starts a new paragraph. Note that this tag is special because it does not require an ending tag.
The following example illustrates the use of the <p> tag.

<html>
<head>
<title> Paragraphs</title>
</head>
<body>
<h1> Paragraphs</h1>
<p> To define a paragraph you must use the p tag. The paragraph is inserted between <p>the opening and closing p tags. Notice that browser will ignore all of the carriage <p>returns typed into your text editor. However when a browser sees the paragraph <p>tag, it inserts a blank line and starts a new paragraph. Note that this tag is special <p>because it does not require an ending tag.
<p> This pargraph is using the opening and closing p tags</p>
</body>
</html>


Hosted by www.Geocities.ws

1