-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
46 lines (41 loc) · 1.17 KB
/
Copy pathblog.html
File metadata and controls
46 lines (41 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matthew Solomon | Blog</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<h1>Matthew Solomon's Blog</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="blog-posts">
<div class="container">
<h2>Blog Posts</h2>
<article>
<h3>Blog Post Title 1</h3>
<p>Brief description of the blog post. <a href="#">Read more...</a></p>
</article>
<article>
<h3>Blog Post Title 2</h3>
<p>Brief description of the blog post. <a href="#">Read more...</a></p>
</article>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Matthew Solomon</p>
</div>
</footer>
</body>
</html>