forked from petfinderProject5/petfinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (50 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Petfinder 🐦</title>
<link rel="stylesheet" href="public/assets/styles/style.css">
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans|Open+Sans" rel="stylesheet">
<link rel="icon" type="image/png" href="public/assets/images/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://use.fontawesome.com/c13b2bdcfc.js"></script>
</head>
<body>
<div class="searchOverlay">
<h1 class="title"> BirdFinder</h1>
<h1 class="title2"> Find a Bird to Adopt!</h1>
<form autocomplete="off" id="searchForm">
<input type="text" id="searchField" placeholder="Find your city">
<button id="submitButton" type="submit">Submit</button>
<button id="autolocate"><i class="fa fa-dot-circle-o" aria-hidden="true"></i></button>
</form>
</div>
<div id="map"></div>
<div class="wrapper">
<h1 class="resultTitle"></h1>
<div class="petsDisplay"></div>
</div>
<!-- END WRAPPER -->
<div class="petDisplayContainer">
<!-- Pet Carousel -->
<div id="petGallery" class="petGallery"></div>
<div class="petInfo">
<div class="petName smallTitle "></div>
<div class="petGender smallTitle "></div>
<div class="petAge smallTitle "></div>
<div class="petDescription description"></div>
<div class="petAdress"></div>
</div>
</div>
<div class="backToMap">
<button class="toMap">Search Another Location</button>
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAIE6FNON09T5VbnCh_HfoADsz1prORR68"></script>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>
<script src="public/assets/scripts/main.js"></script>
</body>
</html>