-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex2.html
35 lines (31 loc) · 1.13 KB
/
index2.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
<!DOCTYPE html>
<html>
<head>
<title>Bird Weather Tracker</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<div>
<h1>localBirdwatching</h1>
<h2 class="h2">Lets go birding, what does the weather look like?</h2>
<form class="weather-input"></form>
<input type="text" id="city-zipcode" placeholder="City or Zip Code">
<button class="submit-weather border border-black text-black bg-white py-2 px-4 rounded">
Submit
</button>
<h2>Looking for that special bird?</h2>
<form class="bird-input"></form>
<input type="text" id="bird-name" placeholder="Bird Species">
<button class="submit-bird border border-black text-black bg-white py-2 px-4 rounded">Submit
</button>
</div>
<div>
<button class="favorites border border-black text-black bg-white py-2 px-4 rounded">Go to Favorites</button>
</div>
<script src="assets/app.js"></script>
<script src="assets/app2.js"></script>
</body>
</html>