HTML stands for HyperText Markup Language. It is the standard language used to create and structure the content of a webpage.
Check this out: World's first website
Headings are tags used to define titles and subtitles on your page.
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
Output:
The paragraph tag is used to group sentences together.
<p>This is the first paragraph.</p>
<p>This is a second, separate paragraph.</p>
Output:
This is the first paragraph.
This is a second, separate paragraph.
<p>This is the first topic.</p>
<hr />
<p>This is a completely different topic.</p>
Output:
This is the first topic.
This is a completely different topic.
<p>221B Baker Street<br>London, England</p>
Output:
221B Baker Street
London, England
<ul>
<li>Tea Bag</li>
<li>Water</li>
<li>Sugar</li>
<li>Milk</li>
</ul>
<ol>
<li>First, boil the water in a kettle.</li>
<li>Add tea bag, sugar and milk into it</li>
<li>Keep boiling it for 5 minutes</li>
<li>Serve the tea by pouring it into cup</li>
</ol>
Output:
<img src="https://cdn.britannica.com/16/234216-050-C66F8665/beagle-hound-dog.jpg" height="300px" width="300px" alt="This is Dog Photo">
Output: