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 pathindex.html
More file actions
55 lines (52 loc) · 2.78 KB
/
index.html
File metadata and controls
55 lines (52 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Neocle - Home</title>
<link rel="icon" href="https://neocle.me/uploads/favicon.png" />
<meta name="description" content="Future game and software developer." />
<meta name="theme-color" content="#f0f4ff" />
<meta property="og:title" content="Neocle's Profile" />
<meta property="og:description" content="Future game and software developer." />
<meta property="og:image" content="https://www.neocle.me/uploads/profile-picture.png" />
<meta property="og:url" content="https://www.neocle.me/" />
<meta property="og:type" content="website" />
<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" />
<link rel="stylesheet" href="css/styles.css" />
<script src="js/loading-animation.js"></script>
</head>
<body>
<div class="wrapper">
<main class="container">
<section class="header animate-on-load">
<img src="uploads/profile-picture.png" alt="Profile Picture" class="avatar" />
<h1 class="main-title">Neocle</h1>
<div class="description">
<p class="subtitle"><span id="typing"></span></p>
</div>
</section>
<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="socials animate-on-load">
<a href="https://discordapp.com/users/515958203838627856/" class="icon"><i class="fab fa-discord"></i></a>
<a href="https://www.youtube.com/channel/UCuJroY6sbleZrTz7N0xyWbA" class="icon"><i class="fab fa-youtube"></i></a>
<a href="https://www.tiktok.com/@neocle_" class="icon"><i class="fab fa-tiktok"></i></a>
<a href="https://www.instagram.com/neocle_/" class="icon"><i class="fab fa-instagram"></i></a>
<a href="https://github.com/Neocle" class="icon"><i class="fab fa-github"></i></a>
</section>
</main>
</div>
<footer class="footer animate-on-load">
<p>© 2025 Neocle. All rights reserved.</p>
</footer>
</body>
<script src="js/navbar-highlight.js"></script>
<script src="js/animated-subtitle.js"></script>
</html>