-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy patharchive.html
75 lines (71 loc) · 2.73 KB
/
archive.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/style.css">
<title>RichardApps - Archive</title>
<link rel="icon" type="image/png" href="src/media/favicon.png">
<link rel="canonical" href="https://www.richardapps.net">
<script src="/src/js/archive.js" type="module"></script>
</head>
<body>
<video
id="rain-vid"
src="/assets/videos/rain-bg.mp4"
poster="/assets/images/rain-bg-static.png"
preload="metadata"
onloadstart="this.playbackRate = 0.8;"
autoplay
muted
loop
playsinline>
</video>
<img id="grunge-overlay" loading="lazy">
<img id="noise-overlay" loading="lazy">
<div class="vignette"></div>
<div id="hue"></div>
<div id="canvas">
<h1 id="archive-title">Archive</h1>
<br>
<p>Here's a list of unfinished or abandoned projects.</p>
<p>Some of them might not work anymore, but feel free to explore. :)</p>
<br>
<ul id="pr-list">
<li>
<p class="pr-title">LuqieDesign</p>
<p class="pr-desc">A YouTube channel featuring tutorials on video editing and motion graphics using a mobile app called 'AlightMotion'.</p>
<p class="pr-info">[?] Since I now have better hardware (PC), I understandably switched to desktop software.</p>
<br>
<p><a href="https://www.youtube.com/@LuqieDesign" target="_blank">VISIT PAGE</a></p>
</li>
<li>
<p class="pr-title">Old webpage</p>
<p class="pr-desc">My old personal webpage before I decided to fully redo it. Will not be updated, but should still work.</p>
<br>
<p><a href="https://old.richardapps.net" target="_blank">VISIT PAGE</a></p>
</li>
<li>
<p class="pr-title">TropicalMC</p>
<p class="pr-desc">A minecraft server featuring common gamemodes, while also some unique modes:</p>
<p class="pr-desc">-> A RPG gamemode with a explorable world, custom weapons, npc's with AI, and a main quest!</p>
<p class="pr-info">[?] Is currently not being worked on anymore.</p>
<br>
<p><a href="https://tropicalminecraft.com" target="_blank">VISIT PAGE</a></p>
</li>
</ul>
<p>..</p>
<br>
<p>Click <a href="index.html#projects">HERE</a> to go back to the homepage.</p>
</div>
</body>
<style>
#archive-title {
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
}
#noise-overlay, #grunge-overlay {
display: block;
}
</style>
</html>