-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
76 lines (66 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Google</title>
<meta content="DevHub" property="og:title" />
<meta name="keywords" content="devhub, dev hub, school games, games, unblocker, unblock, unblocked games, proxy, proxy site, proxies. ultraviolet, ultraviolet proxy, thedevs, unblockedgames, ubg, school games, school proxy, youtube unblocker, youtube, slopes unblocked, unblocked games 76, unblocked games 66, 1v1 lol unblocked, unblocked" />
<link rel="shortcut icon" href="https://www.google.com/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="/css/main.css">
<script src="./uv/uv.bundle.js"></script>
<script src="./uv/uv.config.js"></script>
<script src="/js/main.js" type="module"></script>
</head>
<body>
<h1 style="font-size: 100px;font-family: 'Poppins', sans-serif;animation: colorChange 6s infinite;">DevHub</h1>
<p1 id="meme" style='font-family: "Montserrat", Arial, sans-serif; font-size: 28px;'></p1>
<br> <br>
<br><br>
<button onclick="devhub.cloak('/', 'https://google.com')" class="hvr-grow">Cloak</button>
</body>
</html>
<script>
const strings = [
"your data is secure, we wont expose you for watching men twerk",
"free robux real 2023 working",
"creating then deletion",
"do your homework",
"perhaps",
"thats not true",
"https://www.google.com/search?q=how+to+get+friends",
"i miss the times i ate little kids at 2:91 am",
"i havent touched grass today",
"postive?",
"i think so",
":3",
"i think we all hate 1st 2nd 3rd 4th 5th 6th and 7th period ngl",
"the best period is the bus ride home",
"nice IP"
];
const typewriter = document.getElementById('meme');
const typingSpeed = 40;
const clearDelay = 2000;
function typeWriter() {
const randomString = strings[Math.floor(Math.random() * strings.length)];
let charIndex = 0;
function type() {
if (charIndex < randomString.length) {
typewriter.innerHTML += randomString.charAt(charIndex);
charIndex++;
setTimeout(type, typingSpeed + Math.random() * 100);
} else {
setTimeout(clearText, clearDelay);
}
}
function clearText() {
let text = typewriter.innerHTML;
if (text.length === 0) {
typeWriter();
} else {
typewriter.innerHTML = text.slice(0, -1);
setTimeout(clearText, typingSpeed - Math.random() * 50);
}
}
type();
}
typeWriter();
</script>