-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (71 loc) · 2.27 KB
/
index.html
File metadata and controls
72 lines (71 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frontend Mentor | IP Address Tracker</title>
<!-- Fonts -->
<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"
/>
<!-- LeafletJS Map -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<!-- Sweetalert -->
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<!-- My css -->
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<div class="top-bg"></div>
<header><h1>IP Address Tracker</h1></header>
<form id="search-form" class="search-bar" action="">
<input id="search-input" type="text" placeholder="Search for any IP address or domain" name="search"></input>
<button id="search-enter-btn" type="submit">
<img src="./images/icon-arrow.svg" alt="">
</button>
</form>
<ul class="result-card">
<li>
<div class="result-content">
<h2 class="result-title">
IP Address
</h2>
<p id="result-IP" class="result"></p>
</div>
</li>
<div class="divider"></div>
<li>
<div class="result-content">
<h2 class="result-title">
Location
</h2>
<p id="result-local" class="result"></p>
</div>
</li>
<div class="middle-divider divider"></div>
<li>
<div class="result-content">
<h2 class="result-title">
Timezone
</h2>
<p id="result-timezone" class="result"></p>
</div>
</li>
<div class="divider"></div>
<li>
<div class="result-content">
<h2 class="result-title">
ISP
</h2>
<p id="result-ISP" class="result"></p>
</div>
</li>
</ul>
<div id="map"></div>
<script type="module" src="./scripts/search-form.js"></script>
</body>
</html>