-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.25 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Future Notes | Home</title>
<link rel="stylesheet" href="index.css">
<script src="script.js" defer></script>
</head>
<body>
<header class="site-header">
<h1>It All Starts Here</h1>
<nav aria-label="Main navigation">
<a href="intro.html">Intro</a>
<a href="first-page.html">First Page</a>
<a href="second-page.html">Second Page</a>
<a href="ultima-luce.html">Ultima Luce</a>
</nav>
</header>
<main>
<section class="panel">
<h2>Welcome</h2>
<p>
This is a space where I share my thoughts and reflections on the future. I will explore various topics related to technology, society, and the world we live in. Through these pages, I hope to spark curiosity and inspire others to think about the possibilities that lie ahead.
</p>
<div class="pager">
<a href="intro.html">Start Reading</a>
</div>
</section>
</main>
<footer class="site-footer">
<p>Crafted by <span>Rahul Jha</span></p>
</footer>
</body>
</html>