-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
76 lines (55 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css">
<title>Bird Tracker</title>
</head>
<body class="font-sans bg-gray-100 text-gray-800">
<header class="bg-blue-500 text-white py-8">
<div class="container mx-auto flex justify-between items-center">
<div class="text-3xl font-bold">
Bird<span class="text-yellow-300">Tracker</span>
</div>
<nav>
<ul class="flex space-x-6">
<li><a href="#" class="hover:text-yellow-300">Home</a></li>
<li><a href="#" class="hover:text-yellow-300">Birds</a></li>
<li><a href="#" class="hover:text-yellow-300">Weather</a></li>
<li><a href="#" class="hover:text-yellow-300">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="bg-cover bg-center h-96 flex items-center relative" style="background-image: url('https://birdsite.my.canva.site/birding/images/7e1051dffd4b284803ac86113e0a2e00.jpg');">
<div class="container mx-auto text-center relative z-10">
<h1 class="text-5xl font-bold leading-tight mb-4 text-white">Discover and Track Birds in Your Area</h1>
<p class="text-lg bg--500 text-white">Enter your zip code to explore local bird species and get real-time weather updates.</p>
<div class="mt-6">
<input type="text" id="city-zipcode" placeholder="Enter City" class="px-4 py-2 rounded-md focus:outline-none focus:ring focus:border-blue-300">
<button id="city-zipcode-btn" class="bg-yellow-300 text-blue-500 px-4 py-2 ml-2 rounded-md hover:bg-yellow-400 focus:outline-none focus:ring focus:border-blue-300">
Discover what birds are close to you
</button>
<div id="city-zipcode-dropdown"></div>
<ul id="birdResult" class="mt-4 text-blue-500 bg-gray-100"></ul>
</div>
</div>
</section>
<section class="container mx-auto my-12">
<div class="relative top-0 left-0 p-6 bg-gray-800 text-white">
<h2 class="text-3xl font-semibold mb-6">Local Weather</h2>
<div id="weather-result" class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
</div>
</div>
<h2 class="text-3xl font-semibold mb-6">Display facts about your favorite bird</h2>
<div id="bird-result" class="mt-4 "></div>
</section>
<footer class="bg-blue-500 text-white py-4">
<div class="container mx-auto text-center">
<p>© 2023 Bird Tracker. All rights reserved.</p>
</div>
</footer>
<script src="./assets/app.js"></script>
</body>
</html>