-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
126 lines (124 loc) · 3.44 KB
/
index.html
File metadata and controls
126 lines (124 loc) · 3.44 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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Situs Diblokir</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #0a6a74;
font-family: Arial, sans-serif;
color: #ffffff;
text-align: center;
padding: 20px;
}
.container {
background-color: #ffffff;
color: #333333;
text-align: center;
padding: 30px;
max-width: 700px;
width: 100%;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.icon-container {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.icon img {
width: 100px;
height: 100px;
}
h1 {
font-size: 28px;
font-weight: bold;
color: #333333;
margin-bottom: 20px;
}
p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 12px;
color: #555555;
}
.highlight {
font-weight: bold;
color: #ff6b6b;
}
.footer {
font-size: 14px;
color: #555555;
margin-top: 15px;
}
.footer a {
color: #0a6a74;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
.footer a:hover {
color: #ff6b6b;
}
/* Responsive Styling */
@media (max-width: 768px) {
.container {
padding: 20px;
}
h1 {
font-size: 24px;
}
p {
font-size: 16px;
}
.icon img {
width: 80px;
height: 80px;
}
}
@media (max-width: 480px) {
.container {
padding: 15px;
}
h1 {
font-size: 20px;
}
p {
font-size: 14px;
}
.icon img {
width: 60px;
height: 60px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="icon-container">
<div class="icon">
<img src="images/stop.png" alt="Warning Icon">
</div>
</div>
<h1>Situs Diblokir!</h1>
<p>Karena mengandung konten berikut:</p>
<p class="highlight">Pornografi, Judi, Phishing/Malware, Sara</p>
<p>SESUAI UNDANG-UNDANG RI NOMOR 19 TAHUN 2016 PASAL 40 (2A) DAN (2B)<br> TENTANG INFORMASI DAN TRANSAKSI ELEKTRONIK.</p>
<div class="footer">
<p>Jika tidak bertentangan maka silakan hubungi Kementerian Komunikasi dan Informatika Indonesia.</p>
<p>Email: <a href="mailto:aduankonten@mail.kominfo.go.id">aduankonten@mail.kominfo.go.id</a></p>
</div>
</div>
</body>
</html>