This repository was archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (150 loc) · 3.75 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
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
169
<!DOCTYPE HTML>
<html>
<head>
<meta charset = "utf-8">
<link rel = "shortcut icon" type = "image/x-icon" href="Logo.ico" />
<meta name = "author" content = "iakzs" />
<meta name = "description" content = "iakzs's webpage" />
<meta name = "keywords" content = "Scripts, Roblox" />
<meta property = "og:title" content = "iakzs" />
<meta property = "og:description" content = "iakzs's webpage" />
<meta property = "og:type" content = "website" />
<meta property = "og:url" content = "https://iakzs.github.io" />
<meta property = "og:secure_url" content = "https://iakzs.github.io">
<meta property = "og:image" content = "https://github.com/iakzs/iakzs.github.io/blob/main/logo.ico?raw=true" />
<title>iakzs page</title>
<style>
body
{
background-color: #232323;
background-image: url(Landscape.jpg);
background-attachment: fixed;
background-size: cover;
background-repeat:
no-repeat;"
TEXT = "#ffffff"
}
#Header, #Scripts
{
text-align: center;
animation: fadeIn 2s
}
#Header h1
{
margin: 18px;
color: #ffffff;
font-family: "Trebuchet MS";
}
#Scripts a:hover
{
color: #bcbcbc;
text-decoration: none;
font-size: 30px;
}
#Scripts
{
margin: 35px;
}
#Scripts a
{
line-height: 60px;
color: #e8e8e8;
font-family: Monospace;
font-size: 25px;
}
#Message
{
margin-top: 140px;
text-align: center;
color: #a8a8a8;
font-family: Helvetica;
font-size: 45px;
}
@keyframes fadeIn
{
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
</head>
<body>
<div id = "Header">
<h1><font size = "25">iakzs's TheHub Page</font></h1>
</div>
<div id = "Scripts">
<a href="https://iakzs.github.io/" target = "_blank">Go back</a>
<br>
<a href="https://thehubrbx.weebly.com/script.html" target = "_blank">Scripts</a>
<br>
<a href="?" target = "_blank">Supported games (coming soon!)</a>
<br>
<a href="?" target = "_blank">coming soon</a>
<br>
<a href="?" target = "_blank">coming soon</a>
<br>
<a href="?" target = "_blank">coming soon</a>
<br>
<a href="?" target = "_blank">coming soon</a>
<br>
<a href="?" target = "_blank">coming soon</a>
<br>
<a href="?" target = "_blank">coming soon</a>
</div>
<div>
<p id = "Message">N/A</p>
</div>
<script type = "text/javascript">
let phraseList = [
"no scripts here",
"hello there",
"roblox",
"scripts",
"roblox scripts",
"welcome",
"favorite scripts",
"if you're seeing this, you're very special",
"very cool indeed",
"nothing to see here",
"click the links to see the scripts!",
"be a cool robloxian!",
"nice job",
"no way, lol!",
"that's a lot of damage",
"what a troll!",
"you enjoying your stay?",
"that's no fun!",
"only 1% of people can see this message",
"print('elite scripter')",
"funny!",
"nice joke!",
"lolol!",
"you can't fool me with that one!",
"why did the chicken cross the road?",
"cool!",
"index.html",
"roblox.lua",
"just do it",
"i'm lovin' it",
"what are you doing?",
"hello?",
"don't do it!",
"!",
"enjoy the scripts",
"why did you do that?",
"are you refreshing?",
"but can you do this?",
"wait a minute... who are you?",
"iakzs the best",
"bro got alexa sheeesh",
"aSUS",
"-.-"
];
var element = document.getElementById("Message");
element.innerHTML = phraseList[Math.floor(Math.random() * phraseList.length)];
</script>
</body>
</html>