-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (65 loc) · 3.11 KB
/
index.html
File metadata and controls
74 lines (65 loc) · 3.11 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
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<title>Get your IPv4 and IPv6 address instantly</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="Description" CONTENT="Want to find your IP address? You can get your IPV4 & IPV6 address. Get your location, country and city by hitting eyep.dev">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#333333">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#333333">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#333333">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_GOOGLE_MAP_API_KEY_HERE"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.4/clipboard.min.js"></script>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css">
<!-- import the webpage's javascript file -->
<script src="/snazzyMapStyle.js" defer></script>
<script src="/script.js" defer></script>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T4LTXHS');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<section id="fullScreenContainer">
<div id="map" tabindex="-1"></div>
<div id="gridOverlayContainer"></div>
<header id="ipAddressOverlayContainer">
<div id="ipAddressContainer">
<span id="caption"> SCANNING </span>
<span id="ipAddress"></span>
<button id="copyButton" class="copyButton" data-clipboard-target="#ipAddress">COPY</button>
</div>
</header>
<div id="productHuntBadgeContainer">
<a href="https://www.producthunt.com/posts/eyep">
<img id="productHuntBadge" src="/productHuntBadge.svg" />
</a>
</div>
<footer id="footerOverlayContainer">
<div id="footerContainer">
<span id="locationContainer"></span>
<span id="AboutUs">
BUILT BY
<a class="contactLink LD" href="https://lakshmantgld.github.io" target="_blank">LD</a>
&
<a class="contactLink Suresh" href="https://sureshmurali.github.io" target="_blank">SURESH</a>
</span>
</div>
</footer>
</section>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T4LTXHS"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
</body>
</html>