-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>What's My IP</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<div class="header">
<label class="switch">
<input type="checkbox" id="theme-toggle">
<span class="slider"></span>
</label>
</div>
<div class="container">
<h1>What's My IP</h1>
<div id="flag" class="flag">
<!-- Flag will be inserted here -->
</div>
<div id="results" class="results">
<!-- Results will be inserted here -->
</div>
<div class="buttons">
<button id="test-again" class="btn">Test Again</button>
<button id="copy-all" class="btn">Copy All</button>
</div>
</div>
<div class="footer">
<a href="https://discord.com" target="_blank" class="icon">
<i class="fab fa-discord"></i>
</a>
<a href="https://patreon.com" target="_blank" class="icon">
<i class="fas fa-heart"></i>
</a>
<a href="https://github.com" target="_blank" class="icon">
<i class="fab fa-github"></i>
</a>
</div>
<script src="script.js"></script>
</body>
</html>