<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport", content="width=device-width, initial-scale=1.0">
<title>My First Web Page</title>
</head>
<body>
<marquee>Basic HTML Tags</marquee>
<h1>This is Heading 1</h1>
<h2>This is Heading 2</h2>
<h3>This is Heading 3</h3>
<h4>This is Heading 4</h4>
<h5>This is Heading 5</h5>
<h6>This is Heading 6</h6>
` <p>This is a paragraph. It demonstrates the use of the paragraph tag in HTML.
Paragraphs are used to group related content together.</p>
<hr>
<p>This line is before the line break.<br>This line is after the line
break.</p>
<blockquote>
This is a block quote. It's often used to highlight quoted text from
another source. Block quotes are typically indented to set them apart from the main
text.
</blockquote>
<pre>
This is preformatted text.
It preserves both spaces and
line breaks, which is useful
for displaying code or poetry </pre>
<p>Here are some examples of logical styles:</p>
<strong>This text is strong (typically bold).</strong><br>
<em>This text is emphasized (typically italicized).</em><br>
<code>This is some computer code.</code><br>
<samp>This is sample output from a computer program.</samp><br>
<kbd>This represents keyboard input.</kbd><br>
<var>This is a variable in a mathematical expression or programming
context.</var><br>
<mark>This text is marked or highlighted.</mark><br>
<sub>This is subscript text.</sub> and <sup>This is superscript text.</sup>
</body>
</html>