-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
184 lines (162 loc) · 5.06 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Squish’s homepage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
h1 {
margin: 0;
font-size: 36px;
}
.profile-picture {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 20px;
}
.hero-section {
height: 500px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: #fff;
position: relative;
overflow: hidden;
}
.hero-section img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
filter: blur(10px);
transition: filter 0.3s ease-in-out;
}
.hero-section:hover img {
filter: blur(5px);
}
.hero-section-content {
position: relative;
z-index: 1;
}
.hero-section h2 {
font-size: 36px;
margin: 0;
color: #ffd700;
text-shadow: #000000 1px 0 10px;
}
.hero-section p {
font-size: 18px;
margin-top: 20px;
color: #fff;
text-shadow: #000000 1px 0 10px;
}
.play-button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-top: 20px;
cursor: pointer;
border-radius: 5px;
}
.play-button:hover {
background-color: #45a049;
}
.follow-section {
text-align: center;
padding: 50px 0;
background-color: #333;
color: #fff;
}
.follow-links {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.follow-link {
text-decoration: none;
color: #fff;
font-size: 18px;
padding: 10px 20px;
border: 2px solid #fff;
border-radius: 5px;
}
.follow-link:hover {
background-color: #fff;
color: #333;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
position: fixed;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
font-size: 16px;
}
</style>
</head>
<body>
<!-- hi squish -->
<!-- if you aren't squish then stop snooping -->
<!-- fun fact: this page is copyrighted by NHK Creative, 2024 -->
<!-- so my lawyers will hunt you and your family down if you steal this page -->
<!-- thanks, don't commit theft -->
<!-- - hat -->
<header>
<img class="profile-picture" src="https://img.rec.net/8ht5sos6alzz4je971zvkgzkk.jpg?cropSquare=true&width=640&height=640" alt="Squish Profile Picture">
<h1>Squish</h1>
</header>
<section class="hero-section">
<img src="https://img.rec.net/3a5gux2jiq44iv02iwat78bq6.jpg?width=1920" alt="thumbnail">
<div class="hero-section-content">
<h2>How_Hard_Can_You_Punch</h2>
<p>A PvP fighting game where over time you unlock more power using money to gain more money infinitely.</p>
<a href="https://rec.net/room/How_Hard_Can_You_Punch" class="play-button">Play in RecRoom</a>
</div>
</section>
<section class="hero-section">
<img src="https://img.rec.net/brokf4g38kumza6fh5an5xizn.jpg?width=1920" alt="thumbnail">
<div class="hero-section-content">
<h2>Sword_Stars</h2>
<p>A sword fighting game inspired by Blade Ball! Fight other players and knock them off the platform to become the champion. Collect different swords and abilities to expand your collection and become the best in the world!</p>
<a href="https://rec.net/room/Sword_Stars" class="play-button">Play in RecRoom</a>
</div>
</section>
<section class="follow-section">
<h2>Follow Squish</h2>
<div class="follow-links">
<a href="https://youtube.com/@Squishi" class="follow-link">YouTube</a>
<a href="https://discord.gg/gWRZczBRst" class="follow-link">Discord</a>
<a href="https://rec.net/user/Squish" class="follow-link">Rec.Net</a>
</div>
</section>
<footer>
</footer>
</body>
</html>