-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (115 loc) · 3.5 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
<!DOCTYPE html>
<html>
<head>
<!-- Primary Meta Tags -->
<title>[Szmelc.INC]</title>
<meta name="title" content="[Szmelc.INC]" />
<meta name="description" content="Free and Open-Source Software and more!" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://serainox420.github.io/" />
<meta property="og:title" content="[Szmelc.INC]" />
<meta property="og:description" content="Free and Open-Source Software and more!" />
<meta property="og:image" content="https://i.imgur.com/0YvJDes.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://serainox420.github.io/" />
<meta property="twitter:title" content="[Szmelc.INC]" />
<meta property="twitter:description" content="Free and Open-Source Software and more!" />
<meta property="twitter:image" content="https://i.imgur.com/0YvJDes.png" />
<!-- Meta Tags Generated with https://metatags.io -->
<meta name="viewport" content="width=device-width, initial-scale=2">
<link rel="stylesheet" href="https://serainox420.github.io/styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://serainox420.github.io/js/snowfall.js"></script>
<script>
$(document).ready(function(){
$(document).snowfall({
flakeCount : 200,
maxSpeed : 2,
maxSize : 5
});
});
</script>
<style>
html, body {
height: 100%;
margin: 0;
}
header {
background-image: url("https://i.imgur.com/OgoCXS5.png");
background-size: contain;
background-position: center;
background-repeat: no-repeat;
text-align: center;
height: 256px; /* set a fixed height */
width: 100%; /* set a fixed width */
font-size: 32px;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #000000;
color: #fff;
font-family: Ancient;
font-size: 32px;
}
main {
padding: 10px;
}
img {
max-width: 100%;
}
footer {
background-color: #000;
color: #fff;
padding: 10px 10px;
text-align: center;
font-size: 20px;
}
.navbar {
background-color: #000;
overflow: hidden;
display: flex;
justify-content: center;
padding: px px;
font-weight: bold;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 1px 1px;
text-decoration: none;
font-size: 169px;
}
</style>
</head>
<body>
</body>
<body>
<div class="navbar">
<a href="https://serainox420.github.io/main">X</a>
</div>
<footer>
<p> Szmelc Incorporated © 2024</p>
</footer>
<script>
setInterval(() => {
const elements = document.querySelectorAll("*");
for (const el of elements) {
el.style.color = getRandomColor();
}
}, 200);
function getRandomColor() {
const letters = "0123456789ABCDEF";
let green = Math.floor(Math.random() * 7) + 255 + 100 + 100; // generates a random value between 128 and 255 for green channel
let color = "#" + green.toString(14).padStart(2, "0").repeat(2);
return color;
}
</script>
</body>
</html>