This repository was archived by the owner on Mar 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
363 lines (333 loc) · 11.6 KB
/
Copy pathindex.html
File metadata and controls
363 lines (333 loc) · 11.6 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>H4LO</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="color-scheme" content="light only" />
<meta name="description" content="A corner of the internet dedicated to a goal, and powered by one person." />
<meta property="og:site_name" content="H4LO" />
<meta property="og:title" content="H4LO" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Dedicated by one, powered by one." />
<link href="https://fonts.googleapis.com/css2?display=swap&family=Montserrat:ital,wght@0,300;0,600;1,300;1,600" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="assets/main.css" />
</head>
<body>
<div id="wrapper">
<div id="main">
<div class="inner">
<div id="header2" class="container columns">
<div class="wrapper">
<div class="inner">
<div>
<div id="logo" class="image" data-position="right">
<a href="#" class="frame deferred" oncontextmenu="return false;" ondragstart="return false;"><img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjAiIHk9IjAiIHZpZXdCb3g9IjAgMCAzNTQgMjA5IiB3aWR0aD0iMzU0IiBoZWlnaHQ9IjIwOSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI%2BPHJlY3QgZmlsbD0idHJhbnNwYXJlbnQiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiLz48L3N2Zz4%3D" data-src="assets/images/logo.gif" alt="H4LO" oncontextmenu="return false;" ondragstart="return false;" /></a>
</div>
</div>
<div>
<div id="menu">
<!-- qweoqwupeoiqwuewqe --><style>
:root {
--main-font: 'Montserrat', sans-serif;
--primary-color: #08080800;
--secondary-color: #F7F7F7;
}
/* Basic Reset and Body Styling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Navigation Styling */
nav {
color: var(--secondary-color);
padding: 15px;
display: flex;
align-items: center; /* Changed: Align items to the center vertically */
justify-content: flex-end; /* Changed: Align items to the start (left) */
align-content: flex-end; /* Not strictly necessary for this change */
font-family: var(--main-font);
letter-spacing: 0rem;
font-weight: 600;
}
.menu {
list-style: none;
display: flex;
}
.menu li a {
display: block;
color: var(--secondary-color);
text-decoration: none;
padding: 10px 15px;
position: relative;
}
.menu li a::after {
content: "";
position: absolute;
bottom: 2px; /* Distance from the text */
left: 0; /* Start the underline from the left */
width: 0; /* Initial width is 0 */
height: 2px;
background-color: var(--secondary-color);
transition: width 0.3s ease-in-out, left 0.3s ease-in-out; /* Add transition for left */
}
.menu li a:hover::after {
width: 100%; /* Expand to full width on hover */
left: 0; /* Keep starting position from the left */
}
/* Hover effect for submenu items */
/* Hamburger Styling */
.hamburger {
display: none;
cursor: pointer;
}
.hamburger .bar {
display: block;
width: 25px;
height: 3px;
background-color: var(--secondary-color);
margin: 5px 0;
}
/* Hide Checkbox */
#menu-toggle {
display: none;
}
.close-button {
display: none;
}
/* Responsive - Media Queries (For Mobile) */
@media (max-width: 768px) {
/* Show the Hamburger */
.hamburger {
display: block;
}
/* Hide and Modify Menu on Mobile */
.menu {
position: absolute;
width: 100%;
top: calc(15px + 6em);
left: 0;
background-color: var(--primary-color);
text-align: center;
padding: 40px 0 0 0;
display: none;
z-index: 999;
}
.menu li {
width: 100%;
}
.menu li a {
padding: 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#menu-toggle:checked ~ .menu {
display: block;
}
}
</style>
<nav>
<input type="checkbox" id="menu-toggle" />
<label for="menu-toggle" class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</label>
<ul class="menu">
<button class="close-button">X</button>
<li><a href="https://h4lo.ca">[ home ]</a></li>
<li><a href="https://h4lo.ca/about">[ about ]</a></li>
<li><a href="https://h4lo.ca/storefront">[ shop ]</a></li>
<li><a href="https://h4lo.ca/projs">[ projs ]</a></li>
<li><a href="https://github.com/h4lodev/h4lo.ca">[ code ]</a></li>
</ul>
</nav>
<script>
document
.querySelector(".close-button")
.addEventListener("click", function () {
document.getElementById("menu-toggle").checked = false;
});
document
.querySelector(".close-button")
.addEventListener("click", function () {
document.getElementById("menu-toggle").checked = false;
});
// Close menu on menu item click
document.querySelectorAll(".menu a").forEach((link) => {
link.addEventListener("click", function () {
document.getElementById("menu-toggle").checked = false;
});
});
</script><!-- mnbnbxmbzxmncbzxc -->
</div>
</div>
</div>
</div>
</div>
<hr id="divider02">
<div id="spacer1" class="container default full screen">
<div class="wrapper">
<div class="inner">
</div>
</div>
</div>
<div id="maincont" class="container default">
<div class="wrapper">
<div class="inner">
<h2 id="text04">Hi, I'm</h2>
<h2 id="text05">H4LO</h2>
<h2 id="intro1">And I</h2>
<h2 id="intro2">Make <a href="https://h4lo.ca/projs">things</a></h2>
</div>
</div>
</div>
<hr id="divider05">
<ul id="icons01" class="icons">
<li>
<a class="n01" href="https://ctp-webr.ing/h4lo/previous">
<svg aria-labelledby="icon-title"><title id="icon-title">Arrow Left</title><use xlink:href="assets/icons.svg#arrow-left"></use></svg>
<span class="label">Arrow Left</span>
</a>
</li><li>
<a class="n02" href="https://ctp-webr.ing/">
<svg aria-labelledby="icon-title"><title id="icon-title">Circle</title><use xlink:href="assets/icons.svg#shape-circle"></use></svg>
<span class="label">Circle</span>
</a>
</li><li>
<a class="n03" href="https://ctp-webr.ing/h4lo/next">
<svg aria-labelledby="icon-title"><title id="icon-title">Arrow Right</title><use xlink:href="assets/icons.svg#arrow-right"></use></svg>
<span class="label">Arrow Right</span>
</a>
</li>
</ul>
<div id="spacer2" class="container default full screen">
<div class="wrapper">
<div class="inner">
</div>
</div>
</div>
<div id="footercont" class="container columns full">
<div class="wrapper">
<div class="inner">
<div>
<div id="copylogo" class="image" data-position="center">
<a href="#" class="frame" oncontextmenu="return false;" ondragstart="return false;"><img src="assets/images/copylogo.png" alt="H4LO" oncontextmenu="return false;" ondragstart="return false;" /></a>
</div>
<p id="copyright">All rights reserved. Copyright Protected. © 2025</p>
</div>
<div>
<hr id="divider01">
<ul id="buttonfooter" class="icons">
<li>
<a class="n01" href="mailto:admin@h4lo.ca">
<svg aria-labelledby="icon-title"><title id="icon-title">Email</title><use xlink:href="assets/icons.svg#email"></use></svg>
<span class="label">Email</span>
</a>
</li><li>
<a class="n02" href="https://bsky.app/profile/h4lo.ca">
<svg aria-labelledby="icon-title"><title id="icon-title">bluesky</title><use xlink:href="assets/icons.svg#bluesky"></use></svg>
<span class="label">bluesky</span>
</a>
</li><li>
<a class="n03" href="https://www.youtube.com/@H4LO.">
<svg aria-labelledby="icon-title"><title id="icon-title">Youtube</title><use xlink:href="assets/icons.svg#youtube-alt"></use></svg>
<span class="label">Youtube</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="popuptrigger">
<!-- qweoqwupeoiqwuewqe --><style>
#app {
display:none;
}
.modal-app .overlay {
position: fixed;
z-index: 9998;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
}
.modal-app .modal {
font-family: Montserrat, Montserrat, Montserrat;
color: #FFFFFF;
position: fixed;
width: 800px;
min-height: 450px;
max-width:calc(100% - 80px);
max-height:calc(100% - 80px);
z-index: 9999;
margin: 0;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 2rem;
vertical-align: middle;
background-color: #080808;
border-radius: 5px;
}
.modal-app .modal h3 {
font-family: Helvetica, Arial, sans-serif;
font-size: 2rem;
}
/* Image */
.modal-app .modal .team {
width: 100px;
height: 100px;
border: 0px solid #01d1b2;
border-radius: 100%;
padding: 2px;
margin: 10px 0 10px;
}
.modal-app .close {
position: fixed;
top: -15%;
right: -8%;
background-color: transparent;
border: 0px solid transparent;
font-size: 40px;
color: #FFFFFF;
}
.close:hover {
cursor: pointer;
color: #cccccc;
}
</style>
<script>
function triggerModal() {
var p = document.getElementById("app");
if (p.style.display === "none" | p.style.display === "") {
p.style.display = "block";
} else {
p.style.display = "none";
var container = document.getElementById("popup");
var content = container.innerHTML;
container.innerHTML = content;
};
};
</script><!-- mnbnbxmbzxmncbzxc -->
</div>
<div id="popup">
<!-- qweoqwupeoiqwuewqe --><div id="app" class="modal-app">
<div onclick="triggerModal()" class="overlay"></div>
<div id="popup" class="modal">
<h3>Sorry!</h3>
<br />
<p>This button is unavailable at the moment.</p>
<br /><br />
<p>Maybe this button will become available in the future, but for now, it isn't, sorry!</p>
</div>
</div><!-- mnbnbxmbzxmncbzxc -->
</div>
</div>
</div>
</div>
<script src="assets/main.js"></script>
</body>
</html>