-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
408 lines (408 loc) · 19.1 KB
/
index.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pet Adoption</title>
<link rel="shortcut icon" href="./images/logo.webp" type="image/x-icon" />
<link rel="stylesheet" href="./src/output.css" />
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"
rel="stylesheet"
/>
<!-- font -->
<!-- font awesome -->
<script
src="https://kit.fontawesome.com/379d52eef5.js"
crossorigin="anonymous"
></script>
<!-- font awesome -->
</head>
<body class="font-Lato scroll-smooth">
<header class="w-10/12 xl:w-4/5 mx-auto mt-14">
<!-- Nav start -->
<nav class="navbar bg-base-100">
<div class="navbar-start">
<!-- dropdown -->
<div class="dropdown">
<div tabindex="0" role="button" class="btn btn-ghost lg:hidden">
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h8m-8 6h16"
/>
</svg>
</div>
<ul
tabindex="0"
class="menu menu-sm dropdown-content bg-base-100 rounded-box z-[1] mt-3 w-52 p-2 shadow"
>
<li><a>Home</a></li>
<li><a>Shop</a></li>
<li><a>Contact</a></li>
</ul>
</div>
<!-- navbar -->
<div class="flex items-center gap-3">
<img class="w-10" src="./images/logo.webp" alt="" />
<h2
class="text-color1 text-2xl sm:text-32 lg:text-40 xl:text-24 font-extrabold"
>
Paddy
</h2>
</div>
</div>
<!-- ul list -->
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1">
<li><a>Home</a></li>
<li>
<a>Shop</a>
</li>
<li><a>Contact</a></li>
</ul>
</div>
<!-- user icon -->
<div class="navbar-end">
<i
class="fa-regular fa-user text-xl lg:text-32 rounded-full p-2 lg:p-4 border border-color2.2"
></i>
</div>
</nav>
<!-- Nav end -->
<section class="text-center space-y-8 mt-16">
<h2 class="font-bold text-2xl">
<span class="text-color1.6">Bringing Families Together</span> ❤️🔥
</h2>
<h1
class="font-extrabold text-3xl md:text-5xl lg:text-7xl text-color1 leading-10 lg:leading-88"
>
Your Path to Adoption <br />Starts Here
</h1>
<p
class="leading-7 text-color1 text-xl font-medium max-sm:text-justify"
>
It is a long established fact that a reader will be distracted by the
readable content of a page when looking at its layout. The point of
using Lorem Ipsum is that it has a.
</p>
<button class="customBtn"><a href="#main">View More</a></button>
<img class="mx-auto" src="./images/pet.webp" alt="" />
</section>
</header>
<main id="main" class="w-10/12 xl:w-4/5 mx-auto mt-24 mb-8">
<section class="space-y-6">
<h1 class="font-extrabold text-40 text-color1 leading-48 text-center">
Adopt Your Best Friend
</h1>
<!-- leading-7 text-color1 text-xl font-medium text-center -->
<p
class="leading-7 text-color1.7 text-xl font-medium text-center max-sm:text-justify"
>
It is a long established fact that a reader will be distracted by the
readable content of a page when looking at its layout. The point of
using Lorem Ipsum is that it has a.
</p>
</section>
<!-- buttons Dogs cats rabbits Birds-->
<section
id="categoryBtn"
class="grid justify-center items-center grid-cols-2 md:grid-cols-4 gap-6 mt-8 sm:mb-5 lg:mt-12 lg:mb-8"
>
<!-- <div id="spinnerContainer"></div> -->
</section>
<!--Deal section -->
<section class="flex justify-between items-center my-5 lg:my-7">
<h2 class="font-black text-xl sm:text-24 leading-29 text-color1">
Best Deal For you
</h2>
<button id="sortBtn" class="customBtn" onclick="">Sort by Price</button>
</section>
<!-- Loading spin -->
<div
id="loadingSpin"
class="hidden flex justify-center h-screen items-start"
>
<p class="loading loading-bars loading-lg"></p>
</div>
<!-- showcase pets -->
<section
id="petsCardsContainer"
class="showcase grid grid-cols-1 lg:grid-cols-4 gap-6 xl:gap-3"
>
<!-- pets cards -->
<div
id="petsContainer"
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 xl:grid-cols-3 2xl:grid-cols-3 lg:col-start-1 lg:col-span-3 gap-6 xl:gap-3 h-fit"
></div>
<!-- pets Image -->
<div
id="petsImageContainer"
class="lg:col-start-4 border border-color1.1 p-5 xl:p-3 grid justify-between items-start grid-cols-2 gap-6 xl:gap-3 rounded-xl h-fit hidden"
></div>
</section>
<!-- Modal -->
<section id="modalSection">
<dialog id="myModal" class="modal"></dialog>
</section>
<!-- Adopt section -->
<section>
<dialog id="adopeModal" class="modal">
<div
class="modal-box p-10 flex flex-col justify-center items-center gap-3"
>
<img src="./images/handshake.png" alt="" />
<h3 class="font-black text-4xl text-color1">Congrats</h3>
<p class="font-bold text-lg text-color1.6">
Adoption process is start for your process
</p>
<h2 id="countdown" class="font-black text-4xl text-color2">3</h2>
</div>
</dialog>
</section>
</main>
<footer
class="bg-color1 grid grid-cols-1 md:grid-cols-1 lg:grid-cols-3 gap-10 lg:gap-10 justify-between items-start py-100 px-20 lg:px-20 xl:px-140"
>
<!-- first -->
<div class="text-color3 space-y-8">
<div class="flex items-center gap-5">
<img class="w-12" src="./images/logo.webp" alt="" />
<h2 class="text-color3 max-sm:text-32 text-40 font-extrabold">
Paddy
</h2>
</div>
<div
class="space-y-4 text-base sm:text-2xl lg:text-xl xl:text-base text-color3.6"
>
<p class="leading-32">Phone: +31 85 964 47 25</p>
<p class="leading-32">Location: av. Washington 165, NY CA 54003</p>
<p class="leading-32">Email: [email protected]</p>
<p class="leading-32">Openings hours: 9.00 AM - 5.00 PM</p>
</div>
<div class="flex items-center gap-6">
<svg
width="32.000000"
height="32.000000"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<defs>
<linearGradient
x1="16.000000"
y1="-0.291534"
x2="16.000000"
y2="33.364487"
id="paint_linear_12_857_0"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#00B2FF" />
<stop offset="1.000000" stop-color="#006AFF" />
</linearGradient>
</defs>
<path
id="Vector"
d="M16 0C24.83 0 32 7.16 32 16C32 24.83 24.83 32 16 32C7.16 32 0 24.83 0 16C0 7.16 7.16 0 16 0Z"
fill="url(#paint_linear_12_857_0)"
fill-opacity="1.000000"
fill-rule="evenodd"
/>
<path
id="Vector"
d="M18.07 31.86L18.07 19.5L21.56 19.5L22.02 15.15L18.07 15.15L18.08 12.98C18.08 11.84 18.19 11.23 19.82 11.23L22 11.23L22 6.88L18.51 6.88C14.32 6.88 12.85 8.99 12.85 12.54L12.85 15.15L10.24 15.15L10.24 19.5L12.85 19.5L12.85 31.69C13.87 31.89 14.92 32 16 32C16.69 32 17.38 31.95 18.07 31.86Z"
fill="#FFFFFF"
fill-opacity="1.000000"
fill-rule="nonzero"
/>
</svg>
<svg
width="30.973450"
height="28.000000"
viewBox="0 0 30.9734 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<defs>
<clipPath id="clip12_871">
<rect
id="x-2 1"
rx="-0.500000"
width="29.973454"
height="27.000000"
transform="translate(0.500000 0.500000)"
fill="white"
fill-opacity="0"
/>
</clipPath>
</defs>
<rect
id="x-2 1"
rx="-0.500000"
width="29.973454"
height="27.000000"
transform="translate(0.500000 0.500000)"
fill="#FFFFFF"
fill-opacity="0"
/>
<g clip-path="url(#clip12_871)">
<path
id="Vector"
d="M24.39 0L29.14 0L18.76 11.86L30.97 27.99L21.41 27.99L13.92 18.21L5.36 27.99L0.61 27.99L11.71 15.31L0 0L9.8 0L16.56 8.94L24.39 0ZM22.72 25.15L25.35 25.15L8.37 2.69L5.54 2.69L22.72 25.15Z"
fill="#FFFFFF"
fill-opacity="1.000000"
fill-rule="nonzero"
/>
</g>
</svg>
<svg
width="45.716339"
height="32.000000"
viewBox="0 0 45.7163 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
id="Vector"
d="M44.76 4.99C44.23 3.03 42.69 1.48 40.71 0.95C37.15 0 22.85 0 22.85 0C22.85 0 8.56 0 4.99 0.95C3.03 1.47 1.48 3.02 0.95 4.99C0 8.56 0 16 0 16C0 16 0 23.43 0.95 27C1.47 28.96 3.02 30.51 4.99 31.04C8.56 32 22.85 32 22.85 32C22.85 32 37.15 32 40.71 31.04C42.68 30.52 44.23 28.97 44.76 27C45.71 23.43 45.71 16 45.71 16C45.71 16 45.71 8.56 44.76 4.99Z"
fill="#FF0000"
fill-opacity="1.000000"
fill-rule="evenodd"
/>
<path
id="Vector"
d="M18.29 22.85L30.16 15.99L18.29 9.14L18.29 22.85Z"
fill="#FFFFFF"
fill-opacity="1.000000"
fill-rule="evenodd"
/>
</svg>
<svg
width="32.000000"
height="32.000000"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<defs>
<clipPath id="clip12_889">
<rect
id="instagram-2016-5 1"
rx="-0.500000"
width="31.000000"
height="31.000000"
transform="translate(0.500000 0.500000)"
fill="white"
fill-opacity="0"
/>
</clipPath>
<radialGradient
gradientTransform="translate(4.25203 32.1512) rotate(0) scale(41.7733 41.7733)"
cx="0.000000"
cy="0.000000"
r="1.000000"
id="paint_radial_12_890_0"
gradientUnits="userSpaceOnUse"
>
<stop offset="0.090000" stop-color="#FA8F21" />
<stop offset="0.780000" stop-color="#D82D7E" />
</radialGradient>
<radialGradient
gradientTransform="translate(19.4072 33.5848) rotate(0) scale(32.9231 32.9231)"
cx="0.000000"
cy="0.000000"
r="1.000000"
id="paint_radial_12_891_0"
gradientUnits="userSpaceOnUse"
>
<stop
offset="0.640000"
stop-color="#8C3AAA"
stop-opacity="0.000000"
/>
<stop offset="1.000000" stop-color="#8C3AAA" />
</radialGradient>
</defs>
<rect
id="instagram-2016-5 1"
rx="-0.500000"
width="31.000000"
height="31.000000"
transform="translate(0.500000 0.500000)"
fill="#FFFFFF"
fill-opacity="0"
/>
<g clip-path="url(#clip12_889)">
<path
id="Vector"
d="M10.66 16C10.66 13.05 13.05 10.66 16 10.66C18.94 10.66 21.33 13.05 21.33 16C21.33 18.94 18.94 21.33 16 21.33C13.05 21.33 10.66 18.94 10.66 16ZM7.78 16C7.78 20.53 11.46 24.21 16 24.21C20.53 24.21 24.21 20.53 24.21 16C24.21 11.46 20.53 7.78 16 7.78C11.46 7.78 7.78 11.46 7.78 16ZM22.62 7.45C22.62 7.83 22.73 8.2 22.94 8.52C23.15 8.84 23.45 9.08 23.8 9.23C24.15 9.37 24.54 9.41 24.91 9.34C25.28 9.26 25.63 9.08 25.89 8.81C26.16 8.54 26.35 8.2 26.42 7.83C26.49 7.46 26.46 7.07 26.31 6.72C26.17 6.37 25.92 6.07 25.6 5.86C25.29 5.65 24.92 5.53 24.54 5.53L24.54 5.53C24.03 5.53 23.54 5.74 23.18 6.1C22.82 6.46 22.62 6.94 22.62 7.45ZM9.53 29.02C7.97 28.95 7.12 28.69 6.56 28.47C5.81 28.18 5.28 27.83 4.72 27.27C4.16 26.71 3.81 26.18 3.52 25.43C3.3 24.87 3.04 24.02 2.97 22.46C2.9 20.77 2.88 20.27 2.88 16C2.88 11.72 2.9 11.22 2.97 9.53C3.04 7.97 3.31 7.12 3.52 6.56C3.81 5.81 4.16 5.28 4.72 4.72C5.28 4.16 5.81 3.81 6.56 3.52C7.12 3.3 7.97 3.04 9.53 2.97C11.22 2.89 11.72 2.88 16 2.88C20.27 2.88 20.77 2.89 22.46 2.97C24.02 3.04 24.87 3.3 25.43 3.52C26.18 3.81 26.71 4.16 27.27 4.72C27.83 5.28 28.18 5.81 28.47 6.56C28.69 7.12 28.95 7.97 29.02 9.53C29.1 11.22 29.11 11.72 29.11 16C29.11 20.27 29.1 20.77 29.02 22.46C28.95 24.02 28.69 24.87 28.47 25.43C28.18 26.18 27.83 26.71 27.27 27.27C26.71 27.83 26.18 28.18 25.43 28.47C24.87 28.69 24.02 28.95 22.46 29.02C20.78 29.1 20.27 29.11 16 29.11C11.72 29.11 11.22 29.1 9.53 29.02ZM9.4 0.09C7.7 0.17 6.53 0.44 5.52 0.84C4.46 1.24 3.57 1.79 2.68 2.68C1.79 3.57 1.24 4.46 0.84 5.51C0.44 6.53 0.17 7.7 0.09 9.4C0.01 11.1 0 11.65 0 16C0 20.34 0.01 20.89 0.09 22.59C0.17 24.29 0.44 25.46 0.84 26.48C1.24 27.53 1.79 28.42 2.68 29.31C3.57 30.2 4.46 30.75 5.52 31.15C6.53 31.55 7.7 31.82 9.4 31.9C11.11 31.98 11.65 32 16 32C20.34 32 20.89 31.98 22.59 31.9C24.3 31.82 25.46 31.55 26.48 31.15C27.53 30.75 28.42 30.2 29.31 29.31C30.2 28.42 30.75 27.53 31.16 26.48C31.55 25.46 31.82 24.29 31.9 22.59C31.98 20.88 31.99 20.34 31.99 16C31.99 11.65 31.98 11.1 31.9 9.4C31.82 7.7 31.55 6.53 31.16 5.51C30.75 4.46 30.2 3.57 29.31 2.68C28.42 1.79 27.53 1.24 26.48 0.84C25.46 0.44 24.3 0.17 22.59 0.09C20.89 0.01 20.34 0 16 0C11.65 0 11.11 0.01 9.4 0.09Z"
fill="url(#paint_radial_12_890_0)"
fill-opacity="1.000000"
fill-rule="nonzero"
/>
<path
id="Vector"
d="M10.66 16C10.66 13.05 13.05 10.66 16 10.66C18.94 10.66 21.33 13.05 21.33 16C21.33 18.94 18.94 21.33 16 21.33C13.05 21.33 10.66 18.94 10.66 16ZM7.78 16C7.78 20.53 11.46 24.21 16 24.21C20.53 24.21 24.21 20.53 24.21 16C24.21 11.46 20.53 7.78 16 7.78C11.46 7.78 7.78 11.46 7.78 16ZM22.62 7.45C22.62 7.83 22.73 8.2 22.94 8.52C23.15 8.84 23.45 9.08 23.8 9.23C24.15 9.37 24.54 9.41 24.91 9.34C25.28 9.26 25.63 9.08 25.89 8.81C26.16 8.54 26.35 8.2 26.42 7.83C26.49 7.46 26.46 7.07 26.31 6.72C26.17 6.37 25.92 6.07 25.6 5.86C25.29 5.65 24.92 5.53 24.54 5.53L24.54 5.53C24.03 5.53 23.54 5.74 23.18 6.1C22.82 6.46 22.62 6.94 22.62 7.45ZM9.53 29.02C7.97 28.95 7.12 28.69 6.56 28.47C5.81 28.18 5.28 27.83 4.72 27.27C4.16 26.71 3.81 26.18 3.52 25.43C3.3 24.87 3.04 24.02 2.97 22.46C2.9 20.77 2.88 20.27 2.88 16C2.88 11.72 2.9 11.22 2.97 9.53C3.04 7.97 3.31 7.12 3.52 6.56C3.81 5.81 4.16 5.28 4.72 4.72C5.28 4.16 5.81 3.81 6.56 3.52C7.12 3.3 7.97 3.04 9.53 2.97C11.22 2.89 11.72 2.88 16 2.88C20.27 2.88 20.77 2.89 22.46 2.97C24.02 3.04 24.87 3.3 25.43 3.52C26.18 3.81 26.71 4.16 27.27 4.72C27.83 5.28 28.18 5.81 28.47 6.56C28.69 7.12 28.95 7.97 29.02 9.53C29.1 11.22 29.11 11.72 29.11 16C29.11 20.27 29.1 20.77 29.02 22.46C28.95 24.02 28.69 24.87 28.47 25.43C28.18 26.18 27.83 26.71 27.27 27.27C26.71 27.83 26.18 28.18 25.43 28.47C24.87 28.69 24.02 28.95 22.46 29.02C20.78 29.1 20.27 29.11 16 29.11C11.72 29.11 11.22 29.1 9.53 29.02ZM9.4 0.09C7.7 0.17 6.53 0.44 5.52 0.84C4.46 1.24 3.57 1.79 2.68 2.68C1.79 3.57 1.24 4.46 0.84 5.51C0.44 6.53 0.17 7.7 0.09 9.4C0.01 11.1 0 11.65 0 16C0 20.34 0.01 20.89 0.09 22.59C0.17 24.29 0.44 25.46 0.84 26.48C1.24 27.53 1.79 28.42 2.68 29.31C3.57 30.2 4.46 30.75 5.52 31.15C6.53 31.55 7.7 31.82 9.4 31.9C11.11 31.98 11.65 32 16 32C20.34 32 20.89 31.98 22.59 31.9C24.3 31.82 25.46 31.55 26.48 31.15C27.53 30.75 28.42 30.2 29.31 29.31C30.2 28.42 30.75 27.53 31.16 26.48C31.55 25.46 31.82 24.29 31.9 22.59C31.98 20.88 31.99 20.34 31.99 16C31.99 11.65 31.98 11.1 31.9 9.4C31.82 7.7 31.55 6.53 31.16 5.51C30.75 4.46 30.2 3.57 29.31 2.68C28.42 1.79 27.53 1.24 26.48 0.84C25.46 0.44 24.3 0.17 22.59 0.09C20.89 0.01 20.34 0 16 0C11.65 0 11.11 0.01 9.4 0.09Z"
fill="url(#paint_radial_12_891_0)"
fill-opacity="1.000000"
fill-rule="nonzero"
/>
</g>
</svg>
</div>
</div>
<!-- second -->
<div class="text-color3 space-y-8">
<h3
class="max-sm:text-xl text-32 xl:text-24 leading-6 font-bold text-color3.9"
>
Useful Links
</h3>
<ul class="space-y-4 max-sm:text-base text-2xl xl:text-xl">
<li class="text-color3.6 leading-8">Home</li>
<li class="text-color3.6 leading-8">About Us</li>
<li class="text-color3.6 leading-8">Animals</li>
<li class="text-color3.6 leading-8">Foundation</li>
<li class="text-color3.6 leading-8">Contact</li>
</ul>
</div>
<!-- third -->
<div class="space-y-4 sm:space-y-6 lg:space-y-8 w-full">
<h3 class="text-color3 max-sm:text-xl sm:text-32 xl:text-24">
Drop a Message
</h3>
<form class="space-y-6 lg:space-y-4">
<input
class="max-sm:text-xl text-3xl xl:text-xl bg-color3.05 p-4 text-color3.6 rounded-xl w-full lg:w-full"
type="text"
name=""
id=""
placeholder="Enter your email"
/>
<input
class="max-sm:text-xl sm:text-3xl xl:text-xl customBtn w-full md:w-full lg:w-full"
type="submit"
value="Subscribe"
/>
</form>
</div>
</footer>
<!-- script -->
<script src="./js/fetching.js"></script>
</body>
</html>