-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | IP Address Tracker</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,700;1,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
</head>
<body>
<section>
<p>IP Address Tracker</p>
<form class="form">
<input type="text" class="search-input" id="search-input" placeholder="Search for any IP address or domain">
<button id="btn" type="submit"><img src="images/icon-arrow.svg" alt=""></button>
</form>
<ul id="results" class="listed-results">
<div>
<div class="card-title">IP Address</div>
<li class="search-input-show"></li>
</div>
<div>
<div class="card-title">Location</div>
<li class="location-show"></li>
</div>
<div>
<div class="card-title">Timezone</div>
<li class="timezone-show"></li>
</div>
<div>
<div class="card-title">ISP</div>
<li class="isp-show"></li>
</div>
</ul>
</section>
<div class="mapbox">
<div id="map"></div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://kristacalleja.github.io">Krista Calleja | Full-Stack Developer</a>.
</div>
<script src="config.js"></script>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="main.js"></script>
</body>
</html>