-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (132 loc) · 3.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3wF Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #000000;
color: #333333;
}
#overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
#header {
text-align: center;
padding: 20px;
}
#word-container {
text-align: center;
padding: 20px;
font-family: Futura, sans-serif;
color: #ffffff;
height: 40px;
}
#word {
font-family: Futura, sans-serif;
}
.center-image {
width: 200px;
height: auto;
}
.button-container {
text-align: center;
margin-top: 20px;
}
.button {
padding: 10px 20px;
background-color: #111111;
color: #ffffff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
text-decoration: none;
margin-right: 10px;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
padding: 10px 0;
background-color: #222222;
color: #ffffff;
}
footer p {
margin: 0;
font-size: 14px;
}
footer p a {
color: #ffffff;
text-decoration: none;
}
footer p a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="overlay">
<div id="header">
<img src="https://avatars.githubusercontent.com/u/77888909?v=4" alt="photo-2023-08-07-08-52-52" alt="Image" class="center-image">
</div>
<div id="word-container">
<p id="word"></p>
</div>
<script>
const words = ["No One Is Safe From Evil", "Fucked By 3wF", "3wF Was Here"];
let i = 0;
let timer;
function typingEffect() {
let word = words[i].split("");
var loopTyping = function() {
if (word.length > 0) {
document.getElementById('word').innerHTML += word.shift();
} else {
deletingEffect();
return false;
}
timer = setTimeout(loopTyping, 250);
};
loopTyping();
}
function deletingEffect() {
let word = words[i].split("");
var loopDeleting = function() {
if (word.length > 0) {
word.pop();
document.getElementById('word').innerHTML = word.join("");
} else {
if (words.length > (i + 1)) {
i++;
} else {
i = 0;
}
typingEffect();
return false;
}
timer = setTimeout(loopDeleting, 200);
};
loopDeleting();
}
typingEffect();
</script>
<div class="button-container">
<a class="button" href="https://t.me/Rainoman1" target="_blank">Telegram</a>
<a class="button" href="https://github.com/i3wF" target="_blank">GitHub</a>
</div>
<footer>
<p>© 2024 Designed with ❤️ by <a href="http://3wf.xyz" target="_blank">3wF</a>. All rights reserved.</p>
</footer>
</body>
</html>