-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (80 loc) · 2.47 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
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
<!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"
/>
<link
href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""
/>
<script
src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""
></script>
<title>Frontend Mentor | IP Address Tracker</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div class="wrapper">
<div class="wrapper__top">
<div class="overlay">
<h1>IP Address Tracker</h1>
<form method="POST" class="form">
<input
class="form__input"
type="text"
name="search-input"
id="search-input"
title="search-input"
placeholder=" Search for any IP address or domain"
/>
<button class="btn__submit" type="submit">
<img src="images/icon-arrow.svg" alt="right arrow" />
</button>
</form>
<div class="box box--white">
<div>
<h4>IP Address</h4>
<p id="ip-address"></p>
</div>
<div>
<h4 class="box__title">Location</h4>
<p id="location"></p>
</div>
<div>
<h4>Timezone</h4>
<p id="timezone"></p>
</div>
<div>
<h4>ISP</h4>
<p id="isp"></p>
</div>
</div>
</div>
</div>
<div class="mymap" id="mapid"></div>
<div class="attribution">
Challenge by<a
href="https://www.frontendmentor.io?ref=challenge"
target="_blank"
>Frontend Mentor</a
>. Coded by<a href="#">Marta</a>
</div>
</div>
<script src="api.js"></script>
</body>
</html>