-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
35 lines (32 loc) · 1.45 KB
/
blog.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marvin's Blog</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
</head>
<body class="bg-gradient-to-br from-gray-100 to-gray-200 text-gray-800 font-sans min-h-screen flex flex-col">
<header class="bg-gradient-to-r from-blue-600 to-indigo-600 text-white p-6 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<h1 class="text-3xl font-bold">Marvin's Blog</h1>
<nav class="space-x-4">
<a href="index.html" class="hover:text-blue-200 transition duration-300">Home</a>
<a href="blog.html" class="hover:text-blue-200 transition duration-300">Blog</a>
</nav>
</div>
</header>
<main class="container mx-auto p-6 flex-grow">
<h2 class="text-3xl font-bold mb-6 text-blue-600">Latest Posts</h2>
<div id="blog-list" class="space-y-6">
<!-- Blog posts will be dynamically inserted here -->
</div>
</main>
<footer class="bg-gray-800 text-white text-center p-4 mt-12">
<p>© 2023 Marvin. All rights reserved.</p>
</footer>
<script src="js/blog.js"></script>
</body>
</html>