-
Notifications
You must be signed in to change notification settings - Fork 5
/
home.html
141 lines (138 loc) · 5.21 KB
/
home.html
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
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pet Haven</title>
<link rel="stylesheet" href="../css/home-css.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="http://127.0.0.1:5500/html/home.html">Home</a></li>
<li><a href="http://127.0.0.1:5500/html/contact.html">Contact</a></li>
<li><a href="http://127.0.0.1:5500/html/about.html">About</a></li>
</ul>
</div>
<div class="search">
<input type="text" name="" id="" placeholder="Ex. Persian cat" />
<button class="btn">Search</button>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="slider">
<img src="https://source.unsplash.com/1600x500/?cute pets/"/>
<div class="centered"><h3>Welcome to the Pet Haven!!</h3></div>
</div>
<div class="card">
<h2 class="my-2">Cats</h2>
<div class="card-item">
<img
src="../images/persian.jpeg"
alt=""
width="300px" height="350px"
/>
<div class="lines">
<p class="text-center my-1">Breed : Persian</p>
<p class="text-center my-1">Age : 3 months</p>
<p class="text-center my-1">A grumpy one</p>
</div>
</div>
<div class="card-item">
<img
src="../images/indie.jpeg"
alt=""
width="300px" height="350px"
/>
<div class="lines">
<p class="text-center my-1">Breed : Indie</p>
<p class="text-center my-1">Age : 7 months</p>
<p class="text-center my-1">Loves to cuddle</p>
</div>
</div>
<div class="card-item">
<img
src="../images/mai.jpeg"
alt=""
width="300px" height="350px"
/>
<div class="lines">
<p class="text-center my-1">Breed : Maine Coon</p>
<p class="text-center my-1">Age : 1 year and 2 months</p>
<p class="text-center my-1">Rescued</p>
</div>
</div>
<div class="card-item">
<img
src="../images/rog.webp"
alt=""
width="300px" height="350px"
/>
<div class="lines">
<p class="text-center my-1">Breed : Ragdoll</p>
<p class="text-center my-1">Age : 2 yearss</p>
<p class="text-center my-1">Rescued</p>
</div>
</div>
</div>
<div class="card">
<h2 class="my-2">Dogs</h2>
<div class="card-item">
<img
src="https://source.unsplash.com/160x160/?cute Dogs/"
alt=""
width="300px" height="350px"
/>
<div class="lines">
<p class="text-center my-1">Breed : Indie</p>
<p class="text-center my-1">Age : 3 months</p>
<p class="text-center my-1">A grumpy one</p>
</div>
</div>
<div class="card-item">
<img
src="https://source.unsplash.com/160x160/?cute Dogs/"
alt=""
width="300px" height="350px"
/>
<div class="lines">
<p class="text-center my-1">Breed : Bulldog</p>
<p class="text-center my-1">Age : 3 months</p>
<p class="text-center my-1">A grumpy one</p>
</div>
</div>
<div class="card-item">
<img
src="https://source.unsplash.com/160x160/?cute Dogs/"
alt=""
width="300px" height="350px"
/>
<div class="lines">
<p class="text-center my-1">Breed : Husky</p>
<p class="text-center my-1">Age : 3 months</p>
<p class="text-center my-1">A grumpy one</p>
</div>
</div>
<div class="card-item">
<img
src="https://source.unsplash.com/160x160/?cute Dogs/"
alt=""
width="300px" height="350px"
/>
<div class="lines">
<p class="text-center my-1">Breed : German Shepored</p>
<p class="text-center my-1">Age : 3 months</p>
<p class="text-center my-1">A grumpy one</p>
</div>
</div>
</div>
</div>
</main>
<footer class="flex-all-center">
<p>Copyright ©; PetShop.com</p>
</footer>
</body>
</html>