-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththoughts.html
More file actions
43 lines (40 loc) · 1.71 KB
/
thoughts.html
File metadata and controls
43 lines (40 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thoughts - Arjun Verma</title>
<link rel="icon" type="image" href="logo.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="thoughts.css">
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-menu">
<a href="index.html" class="nav-link">Home</a>
<a href="creations.html" class="nav-link">Creations</a>
<a href="thoughts.html" class="nav-link active">Thoughts</a>
</div>
</div>
</nav>
<main class="main-content">
<div class="content-container">
<div class="page-content">
<h1 class="page-title">Thoughts</h1>
<p class="page-subtitle">Writing on things I find interesting.</p>
<div class="thoughts-list">
<a href="thoughts/sample-article.html" class="thought-preview">
<h2 class="thought-title">A Sample Article Title</h2>
<p class="thought-excerpt">This is a short preview of the article. Replace this with the opening lines or a summary of what the piece is about.</p>
</a>
<a href="#" class="thought-preview">
<h2 class="thought-title">Another Thought</h2>
<p class="thought-excerpt">A brief teaser of what this write-up covers. Keep it to a sentence or two so visitors know whether to click in.</p>
</a>
</div>
</div>
</div>
</main>
</body>
</html>