-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
34 lines (33 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IP Tracker</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
</head>
<body>
<div id="particles-js"></div>
<div class="container">
<h1>IP Tracker</h1>
<form id="ipForm">
<input type="text" id="ipInput" placeholder="Enter IP address" required>
<button type="submit">Track IP</button>
</form>
<div class="results" id="results"></div>
<p class="source">IP Information from <a href="https://ipwhois.app" target="_blank">ipwhois.app</a></p>
</div>
<div id="locationModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2>IP Location</h2>
<div id="map" style="height: 400px;"></div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="particles-config.js"></script>
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script src="script.js"></script>
</body>
</html>