<h1>This is H1 tag</h1>
<h2>This is H2 tag</h2>
<h3>This is H3 tag</h3>
<h4>This is H4 tag</h4>
<h5>This is H5 tag</h5>
<h6>This is H6 tag</h6>

<p>This is what a paragraph looks like.</p>

<strong>This is a strong tag</strong>

<br />
<br />

<span>Looks no different than p but,</span>

<p><strong>Strong</strong> is used like this.</p>

<p><span>Span</span> is used to style text. Don't worry you'll learn it later on!</p>

<em>This is italic text.</em>

<ol>
  <li>This is an item in ordered list.</li>
</ol>

<ul>
  <li>This is an item in unordered list.</li>
</ul>
<a href="https://sauravk.vision" target="_blank">A anchor tag</a>
<br />
<br />

<input type="text">This is an input element.
<br /><br />
<form>This is form element.</form>
<br />
<button type="button">This is button!</button>
p>span {
  color: red;
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.