-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
43 lines (37 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
crossorigin="anonymous">
<link rel="shortcut icon" href="assets/img/favicon.ico" type="image/x-icon" />
<title>Adopt a Pet</title>
</head>
<body>
<header class="bg-light text-center mb-4 p-3">
<img src="assets/img/logo.png" alt="Adopt a Pet">
</header>
<div class="container">
<form id="pet-form">
<div class="form-group">
<label for="animal">Animal</label>
<select id="animal" class="form-control form-control-lg mb-3">
<option value="dog">Dog</option>
<option value="cat">Cat</option>
<option value="bird">Bird</option>
<option value="reptile">Reptile</option>
<option value="smallfurry">Small Furry</option>
<option value="barnyard">Barnyard</option>
<option value="horse">Horse</option>
</select>
<input type="text" id="zip" class="form-control form-control-lg" placeholder="Enter your Zip-Code">
<input type="submit" value="Find" class="btn btn-dark btn-lg btn-block mt-3">
</div>
</form>
<div id="results"></div>
</div>
<script src="js/main.js"></script>
</body>
</html>