-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
75 lines (70 loc) · 2.45 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
<!DOCTYPE HTML>
<html>
<head>
<title>What Is My IP Address ?</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" type="text/css" href="style.css"> -->
</head>
<header>
</header>
<body>
<noscript>
<h2>hmm, i guess you disabled JS so please enable it to see the magic! :)</h2>
<p>ــــــــــــــــــــــ</p>
<p>ــــــــــــــــــــــ</p>
</noscript>
<div id="IP">
<h2>Your Public IP Is: </h2>
<h2 id="ip"></h2>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="LOCATION">
<button id="find-me">Check Your Location</button><br />
<p id="status"></p>
<a id="map-link" target="_blank"></a>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="LANGUAGE">
<h2>Your Browser's Language Is: <a id="language"></a></h2>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="SCREEN">
<h2>Your Screen Size Is: <a id="screen"></a></h2>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="MOBILE">
<h2>Are You Mobile User: <a id="mobile"></a></h2>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="COOKIES">
<h2>Cookies Enabled: <a id="cookies"></a></h2>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="BROWSER">
<h2>Your Browser Is: <a id="browser"></a></h2>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="OS">
<h2>Your OS Is: <a id="os"></a></h2>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="USERAGENT">
<h2>Your User-Agent Is: <a id="useragent"></a></h2>
</div>
<p>ــــــــــــــــــــــ</p>
<div id="SPEEDTEST">
<h2>Your Net Speed Is: <br> <a id="speedtest"></a></h2>
</div>
<script src="main.js"></script>
</body>
<footer>
<p>ــــــــــــــــــــــ</p>
<p>ــــــــــــــــــــــ</p>
<h2><a href="https://github.com/EsmailELBoBDev2/Whatismyip">It's Open Source Website</a> & It's Made By <a
href="https://esmailelbob.hashbase.io">Esmail EL BoB</a> & <a
href="https://github.com/EsmailELBoBDev2/Whatismyip/issues"> Feel Free To Request/Add/Suggest New Ideas</a></h2>
<h2><a href="https://github.com/EsmailELBoBDev2/Whatismyip/blob/master/LICENSE">Licensed Under GNU General Public
License v3.0</a></h2>
</footer>
</html>