-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.55 KB
/
index.html
File metadata and controls
42 lines (40 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Home — Frouk3's site with projects, blog and contact info.">
<title>Frouk's Vault</title>
<link rel="stylesheet" href="style/style.css">
<script src="scripts/script.js" defer></script>
</head>
<body>
<header>
<div class="main-nav-list">
<div class="brand-slot">
<a class="site-brand" href="./index.html">Frouk</a>
</div>
<nav aria-label="Main navigation">
<ul>
<li><a href="./index.html" aria-current="page">Home</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<h1>Welcome</h1>
<p class="lead">Hello, and welcome to my site!
<br>Here you'll find my projects, blog posts, and ways to get in touch.</p>
<section>
<h2>Recent Posts</h2>
<ul id="recent-posts" class="blog-grid"></ul>
</section>
</main>
<footer>
<p>© <span id="year">2025</span> Frouk — <a href="https://github.com/Frouk3">GitHub</a></p>
</footer>
</body>
</html>