forked from mathtut0r1ng/mathtut0r1ng.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
203 lines (181 loc) ยท 6.22 KB
/
index.html
File metadata and controls
203 lines (181 loc) ยท 6.22 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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="mathtutor1ng" />
<meta name="keywords" content="games, unblocked games, minecraft, mathtutor1ng, math tutoring, math" />
<title>mathtutor1ng</title>
<meta property="og:locale" content="en-US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="mathtutor1ng" />
<meta property="og:description" content="Unbl*cked games site with games, movies, tv shows, music, and books! Join the discord! https://discord.gg/GBD5qrURQv" />
<link rel="icon" type="image/png" href="favicon.png">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #08081b 0%, #00007a 100%);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
color: #e0e0e0;
}
.container {
max-width: 800px;
width: 100%;
text-align: center;
}
.header {
margin-bottom: 40px;
animation: fadeInDown 1s ease;
}
h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.turtle-emoji {
font-size: 4rem;
display: inline-block;
animation: bounce 2s infinite;
}
.description {
font-size: 1.3rem;
margin: 30px 0;
line-height: 1.6;
animation: fadeIn 1.5s ease;
}
.description p:first-child::after {
content: ', and listen to music';
}
.features {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin: 40px 0;
}
.feature-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 25px;
min-width: 200px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
animation: fadeInUp 1s ease;
cursor: pointer;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
background: rgba(255, 255, 255, 0.08);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 10px;
}
.countdown-section {
margin-top: 50px;
animation: fadeIn 2s ease;
}
.countdown-title {
font-size: 1.5rem;
margin-bottom: 20px;
opacity: 0.9;
}
.countdown {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.countdown-item {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 10px;
padding: 20px;
min-width: 100px;
}
.countdown-value {
font-size: 2.5rem;
font-weight: bold;
display: block;
}
.countdown-label {
font-size: 0.9rem;
opacity: 0.8;
text-transform: uppercase;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Welcome to mathtutor1ng</h1>
<div class="turtle-emoji">๐</div>
</div>
<div class="description">
<p>Here you can play games, watch movies/shows, read books</p>
<p style="margin-top: 10px; font-size: 1.5rem;">Enjoy!</p>
</div>
<div class="features">
<div class="feature-card" onclick="window.location.href='gamespage/index.html'">
<div class="feature-icon">๐ฎ</div>
<h3>Games</h3>
</div>
<div class="feature-card" onclick="window.location.href='https://drive.google.com/drive/folders/1uROGlu4qQgTETdVO7e0tBZtj3g3tlCbW?usp=sharing'">
<div class="feature-icon">๐ฌ</div>
<h3>Movies & Shows</h3>
</div>
<div class="feature-card" onclick="window.location.href='musicpage.html'">
<div class="feature-icon">๐ต</div>
<h3>Music</h3>
</div>
<div class="feature-card" onclick="window.location.href='https://drive.google.com/drive/folders/1KfGsg-FpEPOHm1ktfJbbZZhbHjwLjKW1?usp=drive_link'">
<div class="feature-icon">๐</div>
<h3>Books</h3>
</div>
<div class="feature-card" onclick="window.location.href='https://forms.gle/MacE9iLJiQDCs7yi9'">
<div class="feature-icon">๐</div>
<h3>Suggestions</h3>
</div>
<div class="feature-card" onclick="window.location.href='https://discord.gg/GBD5qrURQv'">
<div class="feature-icon">๐ฌ</div>
<h3>Join the Discord!</h3>
</div>
</div>
</body>
</html>