This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
51 lines (47 loc) · 1.87 KB
/
about.html
File metadata and controls
51 lines (47 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Neocle - About</title>
<link rel="icon" href="https://neocle.me/uploads/favicon.png" />
<meta name="description" content="Learn more about Neocle." />
<meta name="theme-color" content="#f0f4ff" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<link rel="stylesheet" href="css/about.css" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet" />
<script src="js/loading-animation.js"></script>
</head>
<body>
<div class="wrapper">
<main class="container">
<img src="uploads/profile-picture.png" alt="Profile Picture" class="about-avatar"/>
<h2 class="title">Hey, I'm Neocle</h2>
<div class="navbar animate-on-load">
<a href="/"><i class="navbar-icons fa-solid fa-house"></i>Home</a>
<a href="/about"><i class="navbar-icons fa-solid fa-address-card"></i>About</a>
<a href="/projects"><i class="navbar-icons fa-solid fa-diagram-project"></i>Projects</a>
<a href="/contact"><i class="navbar-icons fa-solid fa-message"></i>Contact</a>
<a href="#"><i class="navbar-icons fa-solid fa-question"></i>Soon...</a>
</div>
<section class="about-section">
<p>
{DESC1}
</p>
<p>
{DESC2}
</p>
<p>
{DESC3}
</p>
</section>
</main>
</div>
<footer class="footer">
<p>© 2025 Neocle. All rights reserved.</p>
</footer>
<script src="js/navbar-highlight.js"></script>
</body>
</html>