-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
50 lines (39 loc) · 1.65 KB
/
Copy pathabout.html
File metadata and controls
50 lines (39 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RedLeaf Systems -- ABOUT</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/x-icon" href="favicon.svg" />
</head>
<body>
<div class="content fade-in">
<div class="navbar-container">
<nav class="navbar">
<a href="index.html" class="nav-logo">🍁</a>
<hr class="nav-horizontal-spacer">
<span class="nav-vertical-spacer">|</span>
<a href="index.html" class="nav-link">Home</a>
<a href="apps.html" class="nav-link">Apps</a>
<a href="about.html" class="nav-link nav-link-selected">About</a>
<a href="contact.html" class="nav-link">Contact</a>
</nav>
</div>
<div class="hero">
<h1 class="fade-up fade-up-1">About Us</h1>
<p>In the future, my bio will be here. Right now, it just contains some media credits.</p>
<ul>
<li>Mouse click SFX from <a href="https://www.pixabay.com/sound-effects/film-special-effects-mouse-click-290204/" target="_blank">Pixabay</a></li>
</ul>
<a class="button" href="index.html">← Go back to home</a>
</div>
<!-- Footer -->
<footer class="footer">
<p>Proudly made in Canada without <em>absolutely zero</em> AI</p>
<p>© 2026 RedLeaf Systems. All rights reserved.</p>
</footer>
</div>
<script src="js.js"></script>
</body>
</html>