-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (86 loc) · 3.14 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
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="zh-Hant-TW">
<head>
<meta charset="UTF-8">
<title>我的 IP位址</title>
<!-- Icon -->
<link rel="icon" href="images/favicon.png" rel="apple-touch-icon" />
<meta name="color-scheme" content="light dark">
<meta name="author" content="chek">
<meta name="copyright" content="chek">
<meta name="generator" content="chek">
<meta name="description" content="我的IP">
<meta name="keywords" content="My IP,我的IP,IP位址">
<meta property="og:title" content="我的 IP位址">
<meta property="og:description" content="IP位址">
<meta property="og:type" content="website">
<meta property="og:url" content="#">
<meta property="og:image" href="images/favicon.png">
<link href="images/favicon.png" rel="apple-touch-icon" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrap">
<div class="header">
<h1>我的 IP位址</h1>
</div>
<div class="container">
<h2 class="IP">載入中...</h2>
<div class="copy_hint">點擊複製</div>
</div>
<div class="container">
<h2>測速工具</h2>
<div class="btn-group">
<button class="btn Cloudflare">
<img src="images/cloudflare.svg" alt="Cloudflare Icon" class="icon">
Cloudflare
</button>
<button class="btn Fast">
<img src="images/fast.svg" alt="Fast Icon" class="icon">
Fast
</button>
<button class="btn Speedtest">
<img src="images/speedtest.svg" alt="Speedtest Icon" class="icon">
Speedtest
</button>
<button class="btn NTU">
<img src="images/NTU.png" alt="NTU Icon" class="icon">
台大測速
</button>
</div>
</div>
<div class="container">
<h2>IP 資訊</h2>
<div class="btn-group">
<button class="DNS_Speed_Test btn">
<img src="images/DNS Speed Test.png" alt="DNS_Speed_Test Icon" class="icon">
DNS 測速
</button>
<button class="Whois btn">
<img src="images/Whois.ico" alt="Whois Icon" class="icon">
IP Whois
</button>
<button class="IPSHU btn">
<img src="images/IPSHU.ico" alt="IPSHU Icon" class="icon">
IP 詳細資訊
</button>
<button class="AbuseIPDB btn">
<img src="images/AbuseIPDB.svg" alt="AbuseIPDB Icon" class="icon">
IP 信譽評測
</button>
</div>
</div>
<div class="footer">
<img src="images/Chek.png" alt="Chek-LOGO">
<p>Copyright © 2024</p>
</div>
</div>
<script src="js/sweetalert2.all.js"></script>
<script src="js/all.js"></script>
</body>
</html>