-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (112 loc) · 4.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="./main.js" defer type="module"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css" />
<title>Dog app</title>
</head>
<body class="dark:bg-gray-900">
<section>
<nav class="flex items-center justify-around p-3">
<img src="./icons/logo-dog.png" alt="" class="w-14" />
<ul class="space-x-3 text-white">
<a
href="https://github.com/Dev-Sarmad"
target="_blank"
class="font-bold text-white"
>Github</a
>
<a
href="linkedin.com/in/sarmad-habib/"
target="_blank"
class="font-bold "
>Linkedin</a
>
<a href="mailto:sarmaddevelops@gmail.com" class="font-bold ">Contact Gmail</a>
</ul>
</nav>
</section>
<section class="max-w-7xl mx-auto">
<div
class="bg-[url('./icons/pexels-johann-1254140.jpg')] md:w-full w-[400px] mx-auto h-[300px] md:h-[500px] bg-no-repeat bg-cover bg-center"
>
<h3 class="text-white text-5xl md:text-6xl font-bold mb-4 p-3 md:text-center ">
Discover the World of Dogs
</h3>
<p class="text-white px-3 md:text-center text-left md:pt-10 ">
Welcome to Dog World, where the wonders of canine companionship unfold.
<br>
Explore a vast collection of information about different breeds, and
their furry friends.
</p>
<span class="bg-red-500 text-white rounded-md px-3 ml-4 text-xl md:mt-10 md:flex md:justify-center md:items-center">
Explore
</span>
</div>
</section>
<section>
<div class="flex flex-col justify-center items-center">
<div class="flex space-x-3 items-center">
<div>
<img src="./icons/logo-dog.png" alt="" />
</div>
<h3 class="font-bold cursor-pointer">THE DOGS APP</h3>
</div>
<div class="flex space-x-3 justify-center">
<input
type="text"
class="placeholder-blue-300 border border-blue-400 px-3"
placeholder="Enter search"
id="input"
/>
</div>
</div>
</section>
<div class="lds-facebook spinner">
<div></div>
<div></div>
<div></div>
</div>
<section>
<div
class="flex flex-col space-y-3 space-x-3 md:flex-row md:flex-wrap mt-5 justify-center items-center"
id="card-container"
>
<!-- card-contaier -->
</div>
<div
id="filtered-results-container"
class="flex flex-col space-y-3 space-x-3 md:flex-row md:flex-wrap mt-5 justify-center items-center"
></div>
</section>
<footer class="bg-white rounded-lg shadow dark:bg-gray-900 m-4">
<div class="w-full max-w-screen-xl mx-auto p-4 md:py-8">
<div class="sm:flex sm:items-center sm:justify-between">
<a href="" class="flex items-center mb-4 sm:mb-0 space-x-3 rtl:space-x-reverse">
<img src="./icons/logo-dog.png" class="h-8" />
<span class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white">The Dog App</span>
</a>
<ul class="flex flex-wrap items-center mb-6 text-sm font-medium text-gray-500 sm:mb-0 dark:text-gray-400">
<li>
<a href="#" class="hover:underline me-4 md:me-6">About</a>
</li>
<li>
<a href="#" class="hover:underline me-4 md:me-6">Privacy Policy</a>
</li>
<li>
<a href="#" class="hover:underline me-4 md:me-6">Licensing</a>
</li>
<li>
<a href="mailto:sarmaddevelops@gmail.com" class="hover:underline">Contact</a>
</li>
</ul>
</div>
<hr class="my-6 border-gray-200 sm:mx-auto dark:border-gray-700 lg:my-8" />
<span class="block text-sm text-gray-500 sm:text-center dark:text-gray-400">© 2024 <a href="" class="hover:underline">Sarmad</a>. Open Source .</span>
</div>
</footer>
</body>
</html>