-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst-post.html
More file actions
30 lines (26 loc) · 957 Bytes
/
first-post.html
File metadata and controls
30 lines (26 loc) · 957 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Rendevou</title>
<style>
body { font-family: sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; line-height: 1.6; }
header { margin-bottom: 20px; }
.date { color: gray; font-size: 0.9em; }
.tag { background-color: #eee; padding: 2px 5px; border-radius: 4px; font-size: 0.8em; }
</style>
</head>
<body>
<header>
<a href="../../index.html">← Back to Home</a>
</header>
<article>
<h1>Welcome to Rendevou</h1>
<p class="date">January 1, 2025 • <span class="tag">Science</span></p>
<hr>
<p>This is the first article published on Rendevou.</p>
<p>Rendevou covers science, technology, and space — clearly, accurately, and without noise.</p>
</article>
</body>
</html>