-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (123 loc) · 4.86 KB
/
index.html
File metadata and controls
129 lines (123 loc) · 4.86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Petimony - Home</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
</head>
<body>
<nav>
<div class="navigation-menu">
<div class="logo">
<img src="logo/2.png" alt="Logo">
</div>
<div class="header">
<h1>Petimony</h1>
</div>
<div class="menu">
<ul>
<li>
<i class="fa fa-home"></i>
<a href="index.html">Home</a>
</li>
<li>
<i class="fa-solid fa-magnifying-glass"></i>
<a href="search.html">Search</a>
</li>
<li>
<i class="fa-solid fa-user"></i>
<a href="pet_profile.html">Pet Profile</a>
</li>
<li>
<i class="fa-solid fa-phone"></i>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="hero-section">
<h1>Find the Perfect Match for Your Pet!</h1>
<p>Connect with pet lovers and discover companions for your furry friends.</p>
<a href="search.html" class="btn">Get Started</a>
</div>
<section class="pets">
<h2>Featured Pets</h2>
<div class="pets-list">
<div class="pet-card">
<video src="pets/11.mp4" autoplay loop muted class="pet-video"></video>
<h3>Chilu Bilu</h3>
<p>Chilu is a playful guy.</p>
<a href="pet_profile.html">View More</a>
</div>
<div class="pet-card">
<video src="pets/22.mp4" autoplay loop muted class="pet-video"></video>
<h3>Betty</h3>
<p>Betty is a friendly talker.</p>
<a href="pet_profile.html">View More</a>
</div>
<div class="pet-card">
<video src="pets/33.mp4" autoplay loop muted class="pet-video"></video>
<h3>Jerry</h3>
<p>Jerry is a curious and energetic mouse.</p>
<a href="pet_profile.html">View More</a>
</div>
<div class="pet-card">
<video src="pets/44.mp4" autoplay loop muted class="pet-video"></video>
<h3>Bonda</h3>
<p>Bonnda is a happy and loving panda.</p>
<a href="pet_profile.html">View More</a>
</div>
</div>
<a href="search.html" class="btn view-more">View More Pets</a>
</section>
<section class="success-stories">
<h2>Success Stories</h2>
<div class="stories-carousel">
<div class="story-card">
<img src="success/1.jpg" alt="Story 1">
<p>Rocky found his best companion Bella.</p>
</div>
<div class="story-card">
<img src="success/2.jpg" alt="Story 2">
<p>Max and Daisy are now inseparable.</p>
</div>
<div class="story-card">
<img src="success/3.jpg" alt="Story 3">
<p>Simba and Luna are enjoying life together.</p>
</div>
<div class="story-card">
<img src="success/4.jpg" alt="Story 4">
<p>Buddy and Coco found their happy forever home.</p>
</div>
</div>
</section>
<section class="highlights">
<div class="highlight-card">
<img src="highlights/1.jpg" alt="Find Matches">
<h2>Find Matches</h2>
<p>Search through profiles and find the perfect match for your pet.</p>
</div>
<div class="highlight-card">
<img src="highlights/2.jpg" alt="Safe & Secure">
<h2>Safe & Secure</h2>
<p>Your data and pet details are kept completely private.</p>
</div>
<div class="highlight-card">
<img src="highlights/3.jpg" alt="Happy Companions">
<h2>Happy Companions</h2>
<p>Join thousands of happy pets and owners who found their match.</p>
</div>
<div class="highlight-card">
<img src="highlights/4.jpg" alt="Adopt & Love">
<h2>Adopt & Love</h2>
<p>Give a loving home to a pet in need.</p>
</div>
</section>
<footer>
<p>© 2024 Petimony | All Rights Reserved</p>
</footer>
</body>
</html>