-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (77 loc) · 3.48 KB
/
index.html
File metadata and controls
95 lines (77 loc) · 3.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="stylesheet" href="dist/css/style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<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:wght@400;500;700&display=swap" rel="stylesheet">
<!-- leaflet main css -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.8.0/dist/leaflet.css" integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ==" crossorigin="" />
<!-- leaflet user's own location plugin -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet.locatecontrol@0.76.1/dist/L.Control.Locate.min.css" />
<title>IP Address Tracker</title>
</head>
<body>
<main class="main-body">
<p class="ip-header">IP Address Tracker</p>
<div class="search-bar">
<input type="text" id="searchbox" placeholder=" Search for any IP address">
<button class="searchbox-button button" aria-label="Searchbox Button"><img class="searchbox-button-img" src="./images/icon-arrow.svg" alt="Icon Arrow Image"></button>
</div>
<div class="main-container">
<div class="content-bar">
<div class="ip">
<label>IP ADDRESS</label><br>
<p class="ip-address">IP Address</p>
</div>
<div class="line"></div>
<div class="location">
<label>LOCATION</label><br>
<p class="city-data">City</p>
<p class="country-data">Country</p>
</div>
<div class="line"></div>
<div class="timezone">
<label>TIME ZONE, TIME & DATE</label><br>
<p class="timezone-data">Timezone</p>
<p class="time-data">Time</p>
<p class="date-data">Date</p>
</div>
<div class="line"></div>
<div class="isp">
<label>ISP</label><br>
<p class="isp-data">ISP</p>
</div>
</div>
<div class="sub-content-bar">
<div class="sub-content-bar-content">
<div class="currency-code">
<label >CURRENCY</label><br>
<p class="currency-data">BDT</p>
</div>
<div class="flags">
<label>COUNTRY FLAG</label><br>
<img src="" class="flag-icon" alt="Flag Image">
</div>
<div class="currency-convert">
<label>CONVERSION RATE</label><br>
<p class="currency-convert-data" style="margin-top:1px;;">$1 = </p>
</div>
</div>
<div id="map"></div>
</div>
<div class="devinfo">
© Developed By <strong>Mohammad Mustak Absar Khan</strong></br>To Visit Repo, <a target="_blank" href="https://github.com/MustakAbsarKhan">Click Here</a>
</div>
</div>
</main>
<script src="index.js" type="module" defer></script>
<!-- leaflet main js -->
<script src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js" integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ==" crossorigin="" defer></script>
<!-- leaflet plugin js -->
<script src="https://cdn.jsdelivr.net/npm/leaflet.locatecontrol@0.76.1/dist/L.Control.Locate.min.js" defer></script>
</body>
</html>