-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
168 lines (144 loc) · 5.04 KB
/
index.html
File metadata and controls
168 lines (144 loc) · 5.04 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🚨 注意!這不是政府普發現金網站 🚨</title>
<style>
:root {
--g0v-color: #f7004f; /* 接近 g0v 的標誌色 */
--background-color: #f4f4f4;
--text-color: #333;
--primary-button-color: #007bff;
--primary-button-hover: #0056b3;
--warning-color: #dc3545;
}
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: var(--background-color);
color: var(--text-color);
line-height: 1.6;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
}
.container {
max-width: 900px;
margin: 20px;
padding: 40px;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
h1 {
color: var(--warning-color);
font-size: 2.5em;
margin-bottom: 0.5em;
border-bottom: 3px solid var(--warning-color);
padding-bottom: 10px;
display: inline-block;
}
h2 {
font-size: 1.8em;
color: var(--text-color);
margin-top: 1.5em;
}
p {
font-size: 1.1em;
margin-bottom: 1.5em;
}
.highlight {
font-size: 1.5em;
color: #000;
font-weight: bold;
display: block;
padding: 10px;
margin: 15px 0;
background-color: #ffe8cc; /* 醒目的淡橘色背景 */
border-radius: 5px;
border: 2px solid #ff9900;
}
.cta-button {
display: inline-block;
padding: 12px 25px;
margin: 10px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s, transform 0.1s;
font-size: 1.1em;
}
.gov-button {
background-color: var(--primary-button-color);
color: white;
}
.gov-button:hover {
background-color: var(--primary-button-hover);
transform: translateY(-2px);
}
.g0v-button {
background-color: var(--g0v-color);
color: white;
}
.g0v-button:hover {
background-color: #c7003f;
transform: translateY(-2px);
}
.footer {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #ccc;
font-size: 0.9em;
color: #666;
}
.g0v-logo {
color: var(--g0v-color);
font-weight: bold;
font-style: italic;
}
/* 響應式設計 */
@media (max-width: 600px) {
h1 {
font-size: 2em;
}
.container {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>🚨 嚴重警告:這不是政府普發現金網站 🚨</h1>
<h2>請注意!您目前造訪的網址是:<span class="g0v-logo">10000.g0v.tw</span></h2>
<p>這個網址<strong>並非</strong>中華民國政府發放普發現金的官方網站。</p>
<p class="highlight">
📣 <strong>正確的</strong>政府官方網站網址是:<br>
<a href="https://10000.gov.tw" target="_blank" style="color: var(--warning-color); text-decoration: underline;">
<strong>10000.gov.tw</strong>
</a>
</p>
<img src="wizard.png" alt="Wizard" height="300px">
<p>為保護您的個人資料與財產安全,請<strong>勿</strong>在此網址輸入任何個人資訊。</p>
<a href="https://10000.gov.tw" class="cta-button gov-button" target="_blank">
前往【正確】政府官方網站
</a>
<hr style="margin: 30px 0; border: none; border-top: 1px dashed #ccc;">
<h2>關於 <span class="g0v-logo">g0v.tw</span></h2>
<p>
<span class="g0v-logo">g0v.tw</span> 是一個<strong>公民科技社群</strong>,致力於使用科技與開放資料,共同協作改善社會與公共事務。我們與政府機關<strong>沒有直接關係</strong>,此網頁僅為響應防詐騙宣導而建立。
</p>
<a href="https://g0v.tw" class="cta-button g0v-button" target="_blank">
了解更多 g0v 公民科技社群
</a>
<div class="footer">
<p>資訊來源請以政府官方公告為準。</p>
<p>本網站由 g0v 零時政府社群貢獻者建置,目的是協助反詐騙宣導。</p>
</div>
</div>
</body>
</html>