0% found this document useful (0 votes)
12 views3 pages

Activity 2

The document is an HTML page that showcases various HTML formatting tags and elements. It includes sections on text formatting, media, and lists, along with a footer containing contact information. The page features examples of bold, italic, and underlined text, as well as images and links.

Uploaded by

sumits67714
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views3 pages

Activity 2

The document is an HTML page that showcases various HTML formatting tags and elements. It includes sections on text formatting, media, and lists, along with a footer containing contact information. The page features examples of bold, italic, and underlined text, as well as images and links.

Uploaded by

sumits67714
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

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>

You might also like