This repository has been archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
157 lines (138 loc) · 4.88 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>
<head>
<title>UC</title>
<style>
body {
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(45deg, #3498db, #e74c3c);
color: #ecf0f1;
}
.content-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.console-box {
background-color: rgba(44, 62, 80, 0.8);
border-radius: 15px;
padding: 40px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
text-align: center;
max-width: 600px;
margin: 0 auto;
}
.console-title {
font-size: 40px;
margin-bottom: 15px;
color: #27ae60;
}
.console-text {
margin-bottom: 20px;
line-height: 1.6;
}
.action-buttons {
margin-top: 20px;
display: flex;
justify-content: center;
gap: 20px;
}
.action-button {
background-color: #27ae60;
color: #ecf0f1;
border: none;
border-radius: 50px;
padding: 12px 25px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
text-decoration: none;
display: inline-block;
font-weight: bold;
}
.action-button:hover {
background-color: #219d50;
}
.credit-text {
margin-top: 7px;
font-size: 14px;
color: #bdc3c7;
}
.website-link {
color: #3498db;
text-decoration: none;
}
.content-container {
text-align: center;
}
.navbar {
background-color: rgba(0, 0, 0, 0.7);
position: fixed;
top: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
z-index: 1000;
}
.navbar-text {
font-size: 20px;
color: #ecf0f1;
margin: 0;
}
.navbar-links {
list-style-type: none;
margin: 0;
padding: 0;
}
.navbar-links li {
display: inline;
margin-right: 10px;
}
.navbar-links a {
font-size: 18px;
color: #ecf0f1;
text-decoration: none;
padding: 10px 20px;
margin: 0 10px;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.navbar-links a:hover {
background-color: #219d50;
}
</style>
</head>
<body>
<div class="navbar">
<p class="navbar-text">UC/Unblocked Cave</p>
<ul class="navbar-links">
<li><a href="index.html">Home</a></li>
<li><a href="games/games.html">Games</a></li>
<li><a href="emulator/emulator.html">Emulator</a></li>
<li><a href="extra/extra.html">Extra</a></li>
</ul>
</div>
<div class="content-container">
<div class="console-box">
<h1 class="console-title">Unblocked Cave</h1>
<p class="console-text">Discover and play unblocked games anytime!</p>
<div class="action-buttons">
<a href="games/games.html" class="action-button">Play</a>
<a href="https://discord.gg/qjKeseN9FG" class="action-button">Join the Discord</a>
</div>
</div>
<p class="credit-text">Made with ❤️ by <a href="https://github.com/misterfonka" class="website-link">misterfonka</a></p>
<p class="credit-text">UNMAINTAINED</p>
<p class="credit-text">WE GOT 10,000 PEOPLE WHO HAVE VISITED THIS WEBSITE!??!</p>
<a href="http://www.freevisitorcounters.com">See amount of people online:</a>
<script type="text/javascript" src="https://www.freevisitorcounters.com/auth.php?id=2c5f3a5a9ad7c8300bb4b4e2d62cda0b35cd7d59"></script>
<script type="text/javascript" src="https://www.freevisitorcounters.com/en/home/counter/1070522/t/8"></script>
</div>
</body>
</html>