ParagraphsThe paragraph tag defines, obviously, a paragraph. Just like the paragraphs you wrote in school, a paragraph in HTML is a group of related sentences. To define a paragraph in HTML simply wrap the text with <p> and </p>. As an example, the HTML code for the first paragraph of this page is: <p> Notice that there is a <p> before the paragraph and a </p> afterwards. Options <p align="center">This text is centered.</p> It is advisable to use CSS to do the same with the text-align: property. |
