-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 1.8 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Simple Blog</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap">
</head>
<body>
<header>
<div class="container">
<h1>My Simple Blog</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="blog-posts">
<div class="post" id="post-1">
<h2 class="post-title">First Blog Post</h2>
<p class="post-date">Published on: January 1, 2024</p>
<p class="post-content">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam.</p>
<a href="#" class="read-more">Read More</a>
</div>
<div class="post" id="post-2">
<h2 class="post-title">Second Blog Post</h2>
<p class="post-date">Published on: February 1, 2024</p>
<p class="post-content">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam.</p>
<a href="#" class="read-more">Read More</a>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 My Simple Blog</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>