-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
62 lines (62 loc) · 3.17 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
<!DOCTYPE HTML>
<html>
<head>
<title>Hotline Map</title>
<link href="style.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhaina|Open+Sans" rel="stylesheet"> <!-- This line is linking the Google Font Open Sans to website so we can use it -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="icon" href="https://storage.googleapis.com/esfcoco-hotlinemap/hotlinemapicon.png">
</head>
<body>
<section class="header">
<div class="header-text">
<h1 class="title">HotlineMap</h1>
<p class="tagline">Find hotlines from around the world</p>
</div>
</section>
<section class="find-numbers">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="jumbotron">
<div class="search">
<h2>Which Country?</h2>
<br>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Select Country
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#detect" onclick="getLocation()" class="disabled">Auto Detect</a></li>
<li><a href="#hk" onclick="displayHK()">Hong Kong</a></li>
<li><a href="#china" onclick="displayChina()">China</a></li>
<li><a href="#taiwan" onclick="displayTaiwan()">Taiwan</a></li>
<li><a href="#japan" onclick="displayJapan()">Japan</a></li>
<li><a href="#unitedstates" onclick="displayUSA()">USA</a></li>
<li><a href="#australia" onclick="displayAustralia()">Australia</a></li>
</ul>
</div>
<br>
<p id="selected"></p>
<p id="demo"></p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="jumbotron">
<h2>Contact Information</h2>
<div class="content-info" id="information">Please select country first.</div>
</div>
</div>
</div>
</div>
</section>
<div class="footer">
<p id="copyright">Copyright © 2017 Hotline Map</p>
</div>
<script src="script.js"></script>
</body>
</html>