HTML Tutorial

Paragraph Element

The paragraph tag does exactly what it implies: it creates a paragraph of text. A empty line is printed after a paragraph.

Attributes

None exist for this tag.

Example

Code:

<html>
	...
	<body>
		<p>Hello!</p>
		<p>Welcome to Learn With Me!</p>
	</body>
	...
</html>

Screen Output:

Hello!

Welcome to Learn With Me!