-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
21 lines (21 loc) · 814 Bytes
/
blog.html
File metadata and controls
21 lines (21 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - The AI Oldtimer</title>
<style>
body { font-family: Arial, sans-serif; line-height: 1.6; padding: 20px; max-width: 800px; margin: auto; }
h1 { text-align: center; }
.post { margin-bottom: 20px; padding: 15px; border: 1px solid #ddd; border-radius: 5px; background: #f9f9f9; }
.post h2 { margin-bottom: 10px; }
</style>
</head>
<body>
<div class="post">
<h2>My First Blog Post</h2>
<p><strong>Published on:</strong> January 20, 2025</p>
<p>Welcome to my first blog post! In this article, I'll share my journey of learning AI and how it can be made accessible to everyone.</p>
</div>
</body>
</html>