-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
65 lines (56 loc) · 1.67 KB
/
index2.html
File metadata and controls
65 lines (56 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IP Address tracker</title>
<link rel="stylesheet" href="style2.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
</head>
<body>
<h1>IP Address Tracker</h1>
<div class="input-btn">
<div class="input" >
<input
class="domain"
id="input"
type="text"
placeholder=" Search for any IP address or domain"
/>
</div>
<button class="btn" id="btn">></button>
</div>
<div class="main-box">
<div>
<p class="p1">IP ADDRESS</p>
<p class="ip">192.212.174.101</p>
</div>
<span class="ruler"></span>
<div>
<p class="p1">LOCATION</p>
<p class="location">Brooklyn, NY 10001</p>
</div>
<span class="ruler"></span>
<div class="time">
<p class="p1">TIMEZONE</p>
<p class="timezone">UTC-05:00</p>
</div>
<span class="ruler"></span>
<div>
<p class="p1">ISP</p>
<p class="isp">SpaceX starlink</p>
</div>
</div>
<div id="map">
</div>
<div class="go-back-btn">
<a href="index.html">Go back</a>
</div>
<script src="./script.js"></script>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
</body>
</html>