-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
167 lines (152 loc) · 7.89 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
<!DOCTYPE html>
<html lang ="en">
<head>
<title>First Capstone</title>
<meta charset="UTF-8">
<meta name='description' content='API for petfinder.com and googlemaps to help connect people to adoptable dogs in the United States'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.1.1/normalize.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Julius+Sans+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link rel="stylesheet" href="float.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<main role="main">
<section id="top">
</section>
<div id="background">
<div class="row">
<div class="col-12">
<div class="transbox">
<div id="js-advanced-options">
<ul class="nav">
<li class="button-dropdown">
<a href="javascript:void(0)" class="dropdown-toggle">Advanced Search Options <div>▼</div></a>
<ul class="dropdown-menu">
<form>
<li>
<strong><li>Gender</strong>
<ul>
<li>
<input type="radio" value="M" name="sex"> Male</li>
</br>
<li>
<input type="radio" value="F" name="sex"> Female</li>
</br>
</ul>
</li>
</br><strong><li>Age</strong>
</br>
<ul>
<li>
<input type="radio" value="baby" name="age">Baby</li>
</br>
<li>
<input type="radio" value="young" name="age">Young</li>
</br>
<li>
<input type="radio" value="adult" name="age">Adult</li>
</br>
<li>
<input type="radio" value="senior" name="age">Senior</li>
</br>
</ul>
</li>
</br><strong><li>Size</strong>
</br>
<ul>
<li>
<input type="radio" value="S" name="size">Small</li>
</br>
<li>
<input type="radio" value="M" name="size">Medium</li>
</br>
<li>
<input type="radio" value="L" name="size">Large</li>
</br>
</ul>
</li>
</br><strong><li>Animal Type</strong>
</br>
<ul>
<li>
<input type="radio" value="barnyard" name="animal">Barnyard</li>
</br>
<li>
<input type="radio" value="dog" name="animal">Dog</li>
</br>
<li>
<input type="radio" value="cat" name="animal">Cat</li>
</br>
<li>
<input type="radio" value="bird" name="animal">Bird</li>
</br>
<li>
<input type="radio" value="reptile" name="animal">Reptile</li>
</br>
<li>
<input type="radio" value="horse" name="animal">Horse</li>
</br>
<li>
<input type="radio" value="smallfurry" name="animal">Small Furry</li>
</br>
</ul>
</li>
</li>
</li>
</div>
<div id="finder">
<ul class="nav">
<li class="button-dropdown">
<a href="javascript:void(0)" class="dropdown-toggle">
Menu <div>▼</div></a>
<ul class="dropdown-menu">
<li>
<a href="#map">
Map</a>
</li>
<li>
<a href="https://secure.aspca.org/donate/ps-gn-p2?ms=MP_PMK_Googlebrand-T4&initialms=MP_PMK_Googlebrand-T4&pcode=WPSE9XXGOGN2PK00014&lpcode=WPSE9XXGOGN1PK00014&gclid=EAIaIQobChMIv6XK8Nyv1QIV1oKzCh17AwKbEAAYASAAEgKSKvD_BwE">Donate</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<strong><h2>Connecting people to adoptable dogs in the United States</h2></strong>
</div>
</div>
</div>
</div>
</div>
<div id="map-border">
<h4>Click on the map to find adoptable dogs, and locate nearby shelters.</h4>
<div id="to-top">
<ul class="nav">
<li class="button-dropdown">
<a href="javascript:void(0)" class="dropdown-toggle">
<a href="#top">Back to Top</a>
</li>
</ul></div>
<section id="map">
<div class="row">
<div class="col-12">
</div>
</div>
</div>
</section>
<section id="results">
<div id="dog-info-template"></div>
</section>
<section id="dog-profile">
</section>
</main>
<script src="map.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC3y6Bpz0bSh9WB45wBmaFEnlkogCoBklE&callback=initMap">
</script>
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>