-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcharacters.html
More file actions
63 lines (56 loc) · 2.03 KB
/
characters.html
File metadata and controls
63 lines (56 loc) · 2.03 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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Cartoon Characters - Cartoon World</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="Piyush.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="characters.html">Characters</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="characters-section">
<h1>Meet Our Cartoon Characters!</h1>
<p>Click on each character to learn more about their adventures and fun facts.</p>
<div class="character-grid">
<!-- Character 1 -->
<div class="character-card">
<img src="Mighty_jordy.png" alt="Character 1">
<h2>Mighty Jordy</h2>
<p>A small but courageous hero with super strength and the ability to fly, always saving the day!</p>
</div>
<!-- Character 2 -->
<div class="character-card">
<img src="Felix_the_cat.png" alt="Character 2">
<h2>Felix the Cat</h2>
<p>A clever and mischievous cat with a magical bag of tricks that helps him solve any problem.</p>
</div>
<!-- Character 3 -->
<div class="character-card">
<img src="duck.png" alt="Character 3">
<h2>Daffy Duck</h2>
<p>A zany and energetic duck who's always causing trouble but never backs down from an adventure.</p>
</div>
<!-- Character 4 -->
<div class="character-card">
<img src="tom_jerry.jpg" alt="Character 4" >
<h2>Tom & Jerry</h2>
<p>A classic duo known for their endless rivalry, with hilarious chases and slapstick comedy.</p>
</div>
<!-- Add more characters here -->
</div>
</section>
<footer>
<p>© 2024 Cartoon World. All rights reserved.</p>
</footer>
</body>
</html>