-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
55 lines (51 loc) · 1.67 KB
/
Assignment.html
File metadata and controls
55 lines (51 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assignment</title>
</head>
<body>
<!-- Your content goes here -->
</body>
</html>
<title>My Cat Page</title>
<body>
<h1>Welcome to My Cat Page</h1>
<p>Cats are amazing creatures. They are playful and independent.</p>
<h3>Fun Facts About Cats</h3>
<p>Cats have five toes on their front paws but only four on their back paws.</p>
<h6>Why Cats are Great Pets</h6>
<p>Cats are low-maintenance pets, and they love to be around their owners.</p>
</body>
<!-- Adding an image of a cat -->
<img src="https://hips.hearstapps.com/hmg-prod/images/ginger-maine-coon-kitten-running-on-lawn-in-royalty-free-image-1719608142.jpg?crop=1xw:0.84415xh;0,0.185xh" alt="A cute cat">
</main>
<!-- Footer section -->
<footer>
<p>© 2026 My Cat Page. All Rights Reserved.</p>
</footer>
<!-- Link to Dog.html from Assignment.html -->
<a href="Dog.html">Go to the Dog Page</a>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Image Page</title>
</head>
<body>
<h1>Welcome to My Image Page</h1>
<!-- Explicit link to the image -->
<a href="https://d1jyxxz9imt9yb.cloudfront.net/medialib/4659/image/p1300x1300/AdobeStock_331202050_538219_reduced.webp" target="_blank">
Click here to view the Image
</a>
</body>
</html>
<nav>
<ul>
<li><a href="Assignment.html">Home</a></li>
<li><a href="Dog.html">Dog Picture</a></li>
<li><a href="Dog_Video.html">Dog Video</a></li>
</ul>
</nav>