-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 999 Bytes
/
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 name="viewport" content="width=device-width">
<title>List inspector</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="screen" charset="utf-8">
</head>
<body>
<h1>Internet Map Explorer</h1>
<div id="root">
<div class="split">
<svg id="map"></svg>
</div>
<div class="split">
<p>
Hovered subnet: <span id="subnet"></span>
</p>
<p>
<input type="file" id="file-input" ></input>
</p>
<p>
<label for="grid">Grid size: /<span id='grid-label'>8</span></label><br>
<input type="range" min="0" max="12" value="4" id="grid">
</p>
</div>
</div>
<script src="main.js" charset="utf-8"></script>
</body>
</html>