forked from fossasia/geolocation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="css/stylesheet.css" rel="stylesheet">
<title>Geolocator for FOSSASIA</title>
</head>
<body>
<h2>Geo locator to faciliate easy integration of location data</h2>
<div id="main-div" class="card">
<label class="label">Click the below button to get Geolocation</label><br><br><br>
<input id="button" type="button" value="Get my geolocation" onClick="geolocation()">
<br><br>
<!-- The below div will hold the data -->
<label id="output" class="label"></label>
<div id="out">
<label>Copy and paste the lat and lng values to the:</label><br>
<!-- Start ignoring LineLengthBear, HTMLLintBear -->
<a href="//github.com/fossasia/gci16.fossasia.org/edit/gh-pages/_data/mentors.yml">Mentors file [If you are a mentor]</a><br>
OR<br>
<a href="//github.com/fossasia/gci16.fossasia.org/edit/gh-pages/_data/students.yml">Students file [If you are a student]</a>
<!-- stop ignoring -->
</div>
</div>
<div class="card" id="info">Created with ♡ for FOSSASIA</div>
<script src="js/main.js"></script>
</body>
</html>