-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (35 loc) · 1.29 KB
/
index.html
File metadata and controls
43 lines (35 loc) · 1.29 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Shadow Codes</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico"/>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
</head>
<body>
<main style="max-width: 1400px;margin: 0 auto;">
<h1>SHADOWCODES</h1>
<h4>Form for convert your words to lat and lng</h4>
<form>
<div style="display: flex; margin: 16px 0">
<div style="margin-right: 16px">
<input type="text" placeholder="Enter the words" id="words">
</div>
<div>
<input type="button" value="Submit" onclick="decodeWord()">
</div>
</div>
</form>
<div id="mapid" style="width: 98%; height: 400px;margin: 0 auto;"></div>
</main>
<script src="words-db.js"></script>
<script src="engine.js"></script>
<script src="main.js"></script>
</body>
</html>