<html>
<head>
<title>Heading Tags</title>
</head>
<body>
<h1>Heading Tag 1</h1>
<h2>Heading Tag 2</h2>
<h3>Heading Tag 3</h3>
<h4>Heading Tag 4</h4>
<h5>Heading Tag 5</h5>
<h6>Heading Tag 6</h6>
</body>
</html>
<html>
<head>
<title>Sample Paragraphs</title>
</head>
<body>
<p>This is a sample paragraph.</p>
<p>This is another sample paragraph.</p>
</body>
</html>
This is a sample paragraph.
This is another sample paragraph.
<html>
<head>
<title>Sample Paragraphs</title>
</head>
<body>
<p>
This is a Break tag example text-1 <br>
This is a Break tag example text-2<br>
This is a Break tag example text-3<br>
This is a Break tag example text-4.
</p>
</body>
</html>
This is a Break tag example text-1
This is a Break tag example text-2
This is a Break tag example text-3
This is a Break tag example text-4.
<html>
<head>
<title>Horizontal Rule Tag</title>
</head>
<body>
<p>
This is a Horizontal Rule tag example -1<hr>
This is a Horizontal Rule tag example -2<hr>
This is a Horizontal Rule tag example -3<hr>
This is a Horizontal Rule tag example -4.
</p>
</body>
</html>
This is a Horizontal Rule tag example -1
<html>
<head>
<title>Comment Tag</title>
</head>
<body>
<p>1. Comment tag sample text. Comment Start Here <!-- You will not be able to see this text. --> and comment end.</p>
<p>2. Another comment line start <!-- this is comment --> and finally end comment line.</p>
</body>
</html>
1. Comment tag sample text. Comment Start Here and comment end.
2. Another comment line start and finally end comment line.