-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (62 loc) · 2.07 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:ital@0;1&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IP Address Tracker</title>
</head>
<body>
<div class="main-container">
<h2 class="page-title">IP Address Tracker</h2>
<div class="ip-input-div">
<input placeholder="Enter IP address and search for locations" class="ip-input"></input>
<button class="submit-ip-btn">></button>
</div>
<br>
<br>
<br>
<div class="data-on-address">
<div>
<br>
<div class="secondary-title">IP ADDRESS:</div>
<br>
<div id="ip" class="bold-title">Loading...</div>
</div>
<div class="vertical-line"></div>
<div>
<br>
<div class="secondary-title">LOCATION:</div>
<br>
<div id="location" class="bold-title"></div>
</div>
<div class="vertical-line"></div>
<div>
<br>
<div class="secondary-title">TIMEZONE:</div>
<br>
<div id="timezone" class="bold-title"></div>
</div>
<div class="vertical-line"></div>
<div>
<br>
<div class="secondary-title">ISP:</div>
<br>
<div id="coordinates" class="bold-title"></div>
<br>
</div>
</div>
</div>
<div id="mapid" class="map"></div>
<script type="module" src="index.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
</body>
</html>