HTML_3_Paragraph
Paragraphs and Formatting
<p> This is a paragraph </p>
To create a paragraph, surround the words that make up the paragraph with an opening <p> tag and closing </p> tag.
By default, a browser will show each paragraph on a new line with some space between it and any subsequent paragraphs.
<p>This is a paragraph.</p>
<p>This is a <b>Bold</b> paragraph.</p>
<p>This is a <i>Itallic</i> paragraph.</p>
<p>This is a <sup>Super</sup>paragraph.</p>
<p>This is a <sub>Sub</sub> paragraph.</p>
<p>This is a paragraph.</p>
<p>This is <em>EM</em> a paragraph.</p>
<p>This is <strong>Strong</strong> a paragraph.</p>
<p>This is <small>Small</small> a paragraph.</p>
<p>This is <ins>Insert</ins> a paragraph.</p>
<p>This is a <del>Delete</del> paragraph.</p>
<p>This is a <s>Strike</s> paragraph.</p>
<p>This is a <mark>Mark</mark> paragraph.</p>
Comments
Post a Comment