-
Notifications
You must be signed in to change notification settings - Fork 55
/
index.html
51 lines (49 loc) · 2.92 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta content='IE=edge' http-equiv='X-UA-Compatible'>
<meta content='width=device-width, initial-scale=1' name='viewport'>
<title>OpenPuppies</title>
<link rel="stylesheet" href="application.css">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('set', 'forceSSL', true);
ga('set', 'anonymizeIP', true);
ga('create', 'UA-37079640-2', 'auto');
ga('send', 'pageview');
</script>
<link href='https://fonts.googleapis.com/css?family=Noto+Sans' rel='stylesheet' type='text/css'>
</head>
<body>
<video id="puppy" autoplay loop>
<source src="" type="video/mp4">
</video>
<div id="adoptionInfo">
<div id="adoptionContainer">
<p class="adoptionText">
Want to bring a pet into your life?
<br>
Put in your ZIP code to find nearby shelters!
</p>
<form id="adoptionForm" class="adoptionText" action="https://www.petfinder.com/animal-shelters-and-rescues/search/" method="GET" autocomplete="off" target="_blank">
<input class="adoptionText" type="text" onkeypress="return (event.charCode == 13 || (event.charCode > 47 && event.charCode < 58));" name="location" id="location">
<input class="adoptionText adoptionButton" type="submit" value="Search!" onclick='document.getElementById("adoptionInfo").style.visibility = "hidden";'>
<button class="adoptionText adoptionButton" type="button" onclick='document.getElementById("adoptionInfo").style.visibility = "hidden";'>No thanks…</button>
</form>
</div>
</div>
<footer class="footer">
<a class="right" href="https://twitter.com/heyits0livia"><svg class="geomicon" width="12px" viewBox="0 0 32 32" style="fill:#color"><title>twitter</title><path d="M2 4 C6 8 10 12 15 11 A6 6 0 0 1 22 4 A6 6 0 0 1 26 6 A8 8 0 0 0 31 4 A8 8 0 0 1 28 8 A8 8 0 0 0 32 7 A8 8 0 0 1 28 11 A18 18 0 0 1 10 30 A18 18 0 0 1 0 27 A12 12 0 0 0 8 24 A8 8 0 0 1 3 20 A8 8 0 0 0 6 19.5 A8 8 0 0 1 0 12 A8 8 0 0 0 3 13 A8 8 0 0 1 2 4"></path></svg></a>
<a class="right" href="https://github.com/heyitsolivia/secretpuppies/graphs/contributors">Made by these fine folks</a>
<a class="right" href="https://github.com/heyitsolivia/secretpuppies/blob/master/CONTRIBUTE.md">Add a puppy</a>
<a class="right permalink" href="#">Get this GIF</a>
</footer>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script src="application.js"></script>
</body>
</html>