-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (95 loc) · 2.74 KB
/
index.html
File metadata and controls
106 lines (95 loc) · 2.74 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
<!DOCTYPE html>
<html>
<head>
<title>YNG3</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link rel="shortcut icon" href="logo.ico" type="image/x-icon">
<style>
body {
background-color: #000;
color: #fff;
font-family: "Helvetica Neue", Arial, sans-serif;
text-align: center;
}
h1 {
font-size: 4em;
margin-top: 100px;
letter-spacing: 5px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
p {
font-size: 1.5em;
margin-top: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
a {
color: #fff;
text-decoration: none;
border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.logo {
height: 100px; /* adjust the height to your desired size */
width: auto;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
font-size: .5em;
padding: 10px 0;
text-align: center;
}
.footer p {
margin: 0;
padding: 0;
line-height: 1;
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
}
.button {
display: inline-block;
margin-top: 20px;
padding: 12px 20px;
background-color: #fff;
color: #000;
border-radius: 5px;
font-size: 1.2em;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 2px;
text-decoration: none;
transition: all 0.3s ease;
}
.button:hover {
background-color: #000;
color: #fff;
cursor: pointer;
}
</style>
</head>
<body>
<img src="logo.png" alt="Logo" class="logo">
<div class="center">
<a href="https://yng3.github.io/"><h1 class="animate__animated animate__fadeInDown">YNG3</h1></a>
</div>
<p class="animate__animated animate__fadeInUp">you have stumbled upon the realm of mystery and wonder. follow me into <a href="https://yng3.github.io/no-credentials-needed">the universe</a> and uncover the secrets of my creations.</p>
<div class="center">
<a href="pixel.html" class="button">Enter the Pixel Dimension</a>
</div>
<div class="footer">
<p>© 2025 YNG3</p>
<p><a href="https://youtube.com/@ynotloc?si=pqxuKUOhRbvVTWKb">YouTube</a></p>
<p>visit my <a href="https://github.com/YNG3">github</a> for all the latest hax</p>
</div>
</body>
</html>