<h1>This is a header 1 element</h1>
<pre><h1>This is a header 1 element</h1></pre>
<h2>This is a header 2 element</h2>
<pre><h2>This is a header 2 element</h2></pre>
<h3>This is a header 3 element</h3>
<pre><h3>This is a header 3 element</h3></pre>
<h4>This is a header 4 element</h4>
<pre><h4>This is a header 4 element</h4></pre>
<h5>This is a header 5 element</h5>
<pre><h5>This is a header 5 element</h5></pre>
<h6>This is a header 6 element</h6>
<pre><h6>This is a header 6 element</h6></pre>
<hr>
<p>The paragraph tag is the most commonly used HTML tag. You wrap it around any text that you would consider a paragraph. Take this paragraph of lorem ipsum for example.</p>
<p>"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. In ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"</p>
<pre>
<p>The paragraph tag is the most commonly used HTML tag. You wrap it around any text that you would consider a paragraph. Take this paragraph of lorem ipsum for example.</p>
<p>"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.In ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"</p></pre>
<hr>
<p><q>A short inline quotation that would appear inside of a paragraph.</q></p>
<pre>
<p>Quasi architecto beatae vitae dicta sunt explicabo. <q>A short inline quotation that would appear inside of a paragraph.</q> said some content generated site. </p>
</pre>
<hr>
<p>Quia voluptas sit aspernatur aut odit aut fugit, luptatem sequi nesciunt.
<blockquote>An extended quotation that would sit by itself outside of other paragraphs.
<cite>Mr. Bean</cite>
</blockquote>
Velit, sed quia non numquam eius modi tempora incidunt ut labore et dol.</p>
<pre>
<p>
Quia voluptas sit aspernatur aut odit aut fugit, luptatem sequi nesciunt.
<blockquote>
An extended quotation that would sit by itself outside of other paragraphs.
<cite>Mr. Bean</cite>
</blockquote>
Velit, sed quia non numquam eius modi tempora incidunt ut labore et dol.
</p>
</pre>
<hr>
<p><strong>Strong</strong>: Text wrapped in <strong>strong tags will be rendered as bolded text</strong>.</p>
<pre>
<p><strong>Strong</strong>: Text wrapped in <strong> tags will be rendered as bolded text</strong>.</p>
</pre>
<hr>
<p><em>Emphasis</em> When you want to place emphasis on a word in a sentence. Text wrapped in <em> tags will be rendered as italic text</em>.</p>
<pre>
<p><em>Emphasis</em> When you want to place emphasis on a word in a sentence. Text wrapped in <em> tags will be rendered as italic text</em>.</p>
</pre>
<hr>
<p><mark>Text that should be highlighted (marked).</mark></p>
<pre>
<p><mark>Text that should be highlighted (marked).</mark></p>
</pre>
<hr>
<p><del datetime="2019-10-23T22:00:00Z">Text that has been marked as removed from the page content. Rendered with a strikethrough.</del></p>
<pre>
<p><del datetime="2019-10-23T22:00:00Z">Text that has been marked as removed from the page content. Rendered with a strikethrough.</del></p>
</pre>
<hr>
<p>Sub text. Appears smaller and dropped down half a line, Subscript text can be used for chemical formulas, like H<sub>2</sub>O.</p>
<pre>
<p>Sub text. Appears smaller and dropped down half a line, Subscript text can be used for chemical formulas, like H<sub>2</sub>O.</p>
</pre>
<hr>
<p>Superscript text can be used for footnotes, like WWW<sup>[1]</sup></p>
<pre>
<p>Superscript text can be used for footnotes, like WWW<sup>[1]</sup></p>
</pre>
<hr>
<p>Abbreviations - Short form for a word.</p>
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
<pre>
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>
</pre>
<hr>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.