-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (61 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>IP Address Tracker</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header class="top-div">
<div class="container">
<div class="content">
<h1>IP Address Tracker</h1>
<form action="" method="POST" onsubmit="return giveIP();">
<div class="form-group">
<input id="userinput" type="text" class="text" placeholder="Search for any IP address or domain">
<div class="fa fa-chevron-right" onclick="giveIP()"></div>
</div>
</form>
</div>
</div>
</header>
<!-- Address Section -->
<section class="address">
<div class="container1">
<div class="content">
<h6>IP ADDRESS</h6>
<p id="ip-address"></p>
</div>
<div class="content">
<h6>LOCATION</h6>
<p id="location"></p>
</div>
<div class="content">
<h6>TIMEZONE</h6>
<p id="timezone"></p>
</div>
<div class="content">
<h6>ISP</h6>
<p id="isp"></p>
</div>
</div>
</section>
<!-- Main Map -->
<div class="map">
<div id="map"></div>
</div>
<!-- Contributions -->
<div class="contributions">
<p>Designed by <a href="https://www.frontendmentor.io">Frontend Mentor</a> & Redeveloped by <a
href="https://github.com/debsishu">Debsishu Pal</a>, <a href="https://github.com/Ayan-Dhara">Ayan Dhara</a>, <a
href="https://github.com/sumit-kr-das">Sumit kr. Das</a></p>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
</body>
<script src="./script.js"></script>
</html>