-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 1.25 KB
/
index.html
File metadata and controls
38 lines (31 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport">
<title>IP tracker</title>
<script src="index.js" defer></script>
<script defer src="./app.js"></script>
<link rel="stylesheet" href="style.css">
<link rel = "icon" href="./img/world-wide-web.png">
<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>
<div class="top-container" id="top-container">
<h1 id="main-heading">IP tracker</h1>
<button id="user-ip-btn">Whats my IP address?</button>
<button id="input-custom-ip">Search for a custom IP address</button>
<table id = "user-info" class="user-info"></table>
<div class="input-container" id="input-container">
<input type="text" id="ip-input">
</div>
</div>
<div id="mapid"></div>
</body>
</html>