
HTML>HTML Basics>Paragraph Tag
Heading Tag Paragraph Tag Line Break Tag Comment Tag Horizontal Rule Tag Block Quotes Tag
The Paragraph Tag
Paragraphs are defined with the <p> tag. The opening tag for a paragraph is <p>, and the closing tag is </p>.
Example
Try it out for yourself!
Examine the HTML code below. Cut and paste (Ctrl c + Ctrl v ) the following HTML code into the form window below and press the check it out button to see the resulting webpage.
<html>
<head><title>HTML Paragraphs</title>
</head>
<body>
<h2>HTML Paragraphs</h2>
<p>This is my very first webpage. I tried creating webpages before however I found it very difficult to learn. I eventually gave up as I spent a lot of time getting more confused and fustrated. I was starting to give up hope until I found this tutorial.</p>
<p>The website creation tutorial is simple to use and the cut and paste examples made learning HTML easy to learn. I hope by the end of this tutorial I will one day be able to create fun webpages that I can use in the classroom...</p>
</body>
</html>
Creating your own webpage
Follow these simple steps to create your own webpage and to view your created webpage in your browser.