-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
124 lines (109 loc) · 3.34 KB
/
blog.html
File metadata and controls
124 lines (109 loc) · 3.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<link rel="stylesheet" href="path/to/blog.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
padding: 20px;
color: #fff;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
padding: 20px;
}
h1 {
text-align: center;
margin-bottom: 20px;
}
.blog-post {
background-color: #f0f0f0;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
}
.blog-post h2 {
color: #333;
margin-bottom: 10px;
}
.post-date,
.post-author {
color: #777;
font-size: 14px;
}
.blog-post p {
margin-bottom: 10px;
}
.blog-post a {
display: inline-block;
padding: 8px 16px;
background-color: #333;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.blog-post a:hover {
background-color: #555;
}
footer {
background-color: #333;
padding: 10px;
color: #fff;
text-align: center;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>Latest Blog Posts</h1>
<div class="blog-post">
<h2>Blog Post Title</h2>
<p>Posted on <span class="post-date">June 1, 2023</span> by <span class="post-author">John Doe</span></p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec urna sit amet justo tempor finibus. Nunc efficitur, mi id maximus lacinia, ex nulla tincidunt purus, vel iaculis est purus sit amet lacus.</p>
<a href="blog-post.html">Read More</a>
</div>
<div class="blog-post">
<h2>Another Blog Post Title</h2>
<p>Posted on <span class="post-date">May 15, 2023</span> by <span class="post-author">Jane Smith</span></p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec urna sit amet justo tempor finibus. Nunc efficitur, mi id maximus lacinia, ex nulla tincidunt purus, vel iaculis est purus sit amet lacus.</p>
<a href="blog-post.html">Read More</a>
</div>
<!-- Add more blog posts here -->
</section>
</main>
<footer>
<p>© 2023 Your Blog. All rights reserved.</p>
</footer>
</body>
</html>