<!
DOCTYPE html>
<html>
<head>
<title>Basic HTML Tags</title>
</head>
<body>
<marquee>HTML Basic Tags</marquee>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<hr>
<p>This is a new paragraph.<br>
Web Tech lab is boring.<br>
Lord save me.</p>
<hr color="red">
<blockquote>
This is a blocked segment.<br>
The blockquote tag is used to define a block of text that is a quotation form and leaves a space at the
start.
</blockquote>
<hr>
<pre>
The text in this block is contained in a pre tag.
</pre>
<hr>
<p>
<b>This is a bold statement.</b>
<br>
<u>This line is underlined.</u>
<br>
<i>This line is italic.</i>
<br>
The chemical formula of water is H<sub>2</sub>O.
<br>
The time complexity of the bubble sort Algorithm is O(n<sup>2</sup>).
<br>
(a+b)<sup>2</sup> = a<sup>2</sup> + b<sup>2</sup> + 2ab
</p>
<hr color="yellow">
</body>
</html>