<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>activity 2</title>
</head>
<body>
<h1>HTML Formatting Tags</h1>
<small>welcome! <br>
This page showacases various HTMl tags.
</small>
<h2>Text Formatting</h2>
<p><b>Bold</b>,<i>italic</i>,<u>underlined</u>,<del>strikethrough</del>,<tt>teletype</
tt>,<strong>strong</strong>,<em>emphasized.</em></p>
<h2>content</h2>
<p>HTML:[Link] <i>HTML5 specification.</i></p>
<h2>Media</h2>
<img src="[Link]" alt="vegeta" height="150" width="150">
<br>
<a href="Visit Example .com">Visit Example .com</a>
<br>
<h2>Lists</h2>
<ul>
<li>unordered Item 1 </li>
<li>unordered Item 2</li>
</ul>
<ol type="1">
<li>Ordered Item1</li>
<li>Ordered Item2</li>
</ol>
<footer>
<h2>Contact</h2>
<p><i>123 Example St,<br>
City, EX 12345<br>Email:<a href="info@[Link]">info@[Link]</a></i></p>
z<p>"This is a blockquote example.</p>
<p>2024 XYZ Company. All right Reserved.</p>
</footer>
</body>
</html>