-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.03 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header class="fade-in">
<h1>Hi, I'm <span>Your Name</span></h1>
<p>I design, build, and enjoy simple things.</p>
<nav>
<a href="index.html" class="active">Now</a>
<a href="books.html">Books</a>
<a href="movies.html">Movies</a>
</nav>
</header>
<main>
<section id="now" class="fade-in delay-1">
<h2>Now</h2>
<ul>
<li>📖 Reading: <em>Walden</em> — Henry David Thoreau</li>
<li>🎬 Watching: <em>The Zone of Interest</em> — Jonathan Glazer</li>
</ul>
</section>
</main>
<footer class="fade-in delay-2">
<p>© 2025 Your Name — Built with HTML, CSS & JS</p>
</footer>
<script src="script.js"></script>
</body>
</html>