forked from GardenSnake/GardenSnake.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworldMap.html
32 lines (21 loc) · 1.02 KB
/
worldMap.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
<!DOCTYPE html>
<html>
<head>
<title>World Map</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css">
<link rel="stylesheet" href="https://pingendo.com/assets/bootstrap/bootstrap-4.0.0-beta.1.css">
<link rel="stylesheet" type="text/css" href="css/worldMap.css">
</head>
<body>
<div id="navMenu"></div> <!-- this div is filled by the nav.js script, maybe there's a better way to reuse navbar code -->
<h1>Contributors around the world</h1>
<h4>Form does not work yet, please add your address in the worldMap.js file</h4>
<form class="worldinput">
<input type="text" name="address" placeholder="YOURGITHUBUSERNAME, CITY, COUNTRY">
</form>
<div id="map"></div>
</body>
<script src="js/worldMap.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBTVYkb9Tg08Va2AwaHV0llTvEJc_VW-ms&callback=initMap"></script>
<script type="text/javascript" src="js/nav.js"></script>
</html>