-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
78 lines (68 loc) · 2.58 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Natural Disaster</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link href="main.css" rel="stylesheet"/>
</head>
<body>
<div class="modal-header">
<h1 class="logo">
<img class="logo-icon" src="images/natural-disaster-icon.png" class="logo-icon"> Disaster Watch
<span class="version">(1.0.0)</span>
</h1>
</div>
<div class="modal-content">
<p>What to do for:</p>
</div>
<a href="https://www.ready.gov/hurricanes" target="_blank" style="margin:20px"><button>Hurricanes</button></a>
<a href="https://www.ready.gov/floods" target="_blank"><button>Floods</button></a>
<a href="https://www.ready.gov/earthquakes" target="_blank" style="margin:20px"><button>Earthquakes</button></a>
<a href="https://www.ready.gov/wildfires" target="_blank"><button>Fires</button></a>
<p></p>
<div class="mapping-header">
<div class="mapping-content">
<p>Watch for flood zones in your area!</p>
</div>
</div>
<button id="find-me" style="margin:20px">Show my location</button>
<a href="https://msc.fema.gov/portal/search#searchresultsanchor" target="_blank"><button>Flood map</button></a>
<p id="status" style="margin:20px"></p>
<p id="lonlat" style="margin:20px"></p>
<img id="image" src="" style="margin:20px;width:200px;height:200px"></img>
<div class="modal-icons">
<div class="flex-container">
<div class="flex">
<a href="https://ourworldindata.org/natural-disasters" target="_blank">
<i class="fa fa-globe"></i>
</a>
</div>
<div class="flex">
<a href="https://catalog.data.gov/dataset?groups=disasters#topic=disasters_navigation" target="_blank">
<i class="fa fa-keyboard-o"></i>
</a>
</div>
<div class="flex">
<a href="https://twitter.com/disasterschart?lang=en" target="_blank">
<i class="fa fa-twitter"></i>
</a>
</div>
<div class="flex">
<a href="https://www.facebook.com/disaster/" target="_blank">
<i class="fa fa-facebook"></i>
</a>
</div>
<div class="flex">
<a href="https://github.com/stephenzshu/HackMISA" target="_blank">
<i class="fa fa-github"></i>
</a>
</div>
</div>
</div>
</body>
<footer>
<script src="popup.js"></script>
</footer>
</html>