-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
157 lines (124 loc) · 3.65 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
<!DOCTYPE html>
<html>
<link rel="shortcut icon" href="Favicon.ico">
<style>
.seven
{
border: 4px solid black;
text-align center;
background-color: lightgray;
box-shadow: 5px 5px 10px black;
border-radius: 0px 20px 0px 0px;
}
.MIDI
{
margin: center;
width: 50%;
border: 5px solid red;
padding: 10px;
}
a:link {
color:#000000;
}
.tabcontent {
-webkit-animation: fadeEffect 1s;
animation: fadeEffect 1s; /* Fading effect takes 1 second */
}
@-webkit-keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}
/* Style the tab */
div.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
/* Style the buttons inside the tab */
div.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}
/* Change background color of buttons on hover */
div.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
div.tab button.active {
background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}
</style>
<head>
<title>RobuxCentral.tk</title>
</head>
<div class="tab">
<button class="tablinks" onclick="openCity(event, 'Home')" id="defaultOpen">Home</button>
<button class="tablinks" onclick="openCity(event, 'About us')">About us</button>
<button class="tablinks" onclick="openCity(event, 'HowTo')">How to</button>
</div>
<script>
// Get the element with id="defaultOpen" and click on it
document.getElementById("defaultOpen").click();
</script>
<div id="Home" class="tabcontent">
<div align="center">
<h1 class="seven">RobuxCentral.tk</h1>
</div>
<div class="seven" align="center">
HALLOWEEN SPECIAL!!!! 50% FASTER!!!.
</div>
<div align="center">
<br>
<br>
<a class="MIDI" href="https://www.roblox.com/games/1124164639/ROBUX-GLITCH-Halloween-special" style="color:#000000">ONLINE VERSION</a>
<a class="MIDI" href="Idk da name to the game.zip" download>OFFLINE VERSION</a>
</div>
<br>
<div align="center">
<iframe width="320" height="240" src="https://youtu.be/l_iBW00yYME" frameborder="0" allowfullscreen style="margin-top: 20px;"></iframe>
</div>
<img src="pnlmtyzraecz.png"></img>
</div>
<div id="About us" class="tabcontent">
<h3 class="seven">Hello. My name is Alex and I made RobuxCentral with my friend Magnum.<br> We made RobuxCentral because we like to help other people :) Please donate if you find this website useful. "PaypalLink"</h3>
</div>
<div id="HowTo" class="tabcontent">
<h2 class="seven" align="center">How do I get free Robux ??</h2>
<h3 class="seven">Step one. Click on one of the free versions.</h3>
<h3 class="seven">Step two. Do the tutorials of the versions</h3>
<h3 class="seven">Step three. Enjoy :)</h3>
</div>
<body background="BEET.jpeg">
<script>
function openCity(evt, cityName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
</script>
</body>
</html>