HTML Class Activity 1
HTML Class Activity 1
```html
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website</h1>
<p>This is a paragraph.</p>
<h2>A link to another webpage:</h2>
<a
href="https://upload.wikimedia.org/wikipedia/commons/e/ee/Chain_link_icon.png"
target="_blank">Click here</a>
<h2>An inserted image:</h2>
<img src="image.jpg" alt="Description of the image">
<h2>An unordered list:</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2>An ordered list:</h2>
<ol>
<li>Item A</li>
<li>Item B</li>
<li>Item C</li>
</ol>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website</h1>
<p>This is a paragraph.</p>
<h2>A link to another webpage:</h2>
<a
href="https://upload.wikimedia.org/wikipedia/commons/e/ee/Chain_link_icon.png">Cl
ick here</a>
<h2>An inserted image:</h2>
<img
src="https://upload.wikimedia.org/wikipedia/commons/e/ee/Chain_link_icon.png"
alt="Description of the image">
<h2>An unordered list:</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2>An ordered list:</h2>
<ol>
<li>Item A</li>
<li>Item B</li>
<li>Item C</li>
</ol>
</body>
</html>