-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Get GeoLocation</title>
<meta name="description" content="Minimal Form Interface: Simplistic, single input view form" />
<meta name="keywords" content="form, minimal, interface, single input, big form, responsive form, transition" />
<meta name="author" content="Jai Kathuria">
<!--Custom CSS -->
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<!--Animate CSS Library -->
<link rel="stylesheet" type="text/css" href="css/animate.css" />
</head>
<body>
<section class="form hidden">
<form id="theForm" class="base siform" autocomplete="off">
<ol class="question">
<li class="current">
<span><label for="q"> Get Geo Location of ?</label></span>
<span class="error hide"></span>
<input id="q" name="q" type="text"/>
</li>
</ol>
<p><input type="submit" value="Submit" class="btn"> </p>
</form>
</section>
<section>
<div class="container">
<ol class="loc-list">
<li class="bg-black"></li>
<li class="bg-black"></li>
<li class="bg-black"></li>
<li class="bg-black"></li>
<li class="bg-black"></li>
</ol>
</div>
</section>
<!-- JQuery-->
<script src="js/jquery.js"></script>
<!-- App JS -->
<script src="js/app.js"></script>
<!-- Validate JS -->
<script src="js/validate.js"></script>
</body>
</html>