-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (60 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
68 lines (60 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacked by Darknight</title>
<style>
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, rgb(0, 0, 0), rgb(10, 10, 10));
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
font-family: Arial, sans-serif;
}
h1 {
font-size: 70px;
color: #00ffff;
text-shadow: 0px 0px 15px cyan, 0px 0px 25px blue;
animation: glow 1.5s infinite alternate;
}
p {
font-size: 24px;
color: red;
margin-top: 20px;
animation: walk 8s linear infinite;
}
img {
margin-top: 10px;
width: 100px;
animation: spin 3s linear infinite;
}
@keyframes glow {
from {
text-shadow: 0px 0px 10px cyan, 0px 0px 20px blue;
}
to {
text-shadow: 0px 0px 25px cyan, 0px 0px 40px white;
}
}
@keyframes walk {
0% { transform: translateX(-100vw); }
100% { transform: translateX(100vw); }
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<h1>Hacked by Darknight</h1>
<p>Your security is weak. I exploit it.</p>
<img src="https://img.icons8.com/ios-filled/50/ffffff/sword.png" alt="Sword Logo">
</body>
</html>