-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
89 lines (80 loc) · 2.78 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
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
<!DOCTYPE html>
<html>
<head>
<title>My Blog</title>
<meta name ="description" content="blog">
<meta name ="keywords" content="web blog,blog, web dev blog">
<style type="text/css">
#mainHeader{
text-align: center;
background-color:black;
color: white;
padding: 10px;
}
#mainFooter{
text-align: center;
font-size: 18px;
}
</style>
</head>
<body>
<header id="mainHeader">
<h1>My Website</h1>
</header>
<a href="index.html">Go to index</a>
<section>
<article class="post">
<h3>Blog Post One</h3>
<small>Posted by Brad</small>
<p>Lorem, ipsum dolor sit amet consectetur
adipisicing elit. Sunt reprehenderit eveniet,
aliquid illo ab, iure expedita quisquam
perspiciatis aut veniam f
acilis quibusdam
minima esse qui eos modi ut ipsa?
Natus!
</p>
<a href="post.html">Read More</a>
</article>
<article class="post">
<h3>Blog Post Two</h3>
<small>Posted by Brad</small>
<p>Lorem, ipsum dolor sit amet consectetur
adipisicing elit. Sunt reprehenderit eveniet,
aliquid illo ab, iure expedita quisquam
perspiciatis aut veniam f
acilis quibusdam
minima esse qui eos modi ut ipsa?
Natus!
</p>
<a href="post.html">Read More</a>
</article>
<article class="post">
<h3>Blog Post Three</h3>
<small>Posted by Brad</small>
<p>Lorem, ipsum dolor sit amet consectetur
adipisicing elit. Sunt reprehenderit eveniet,
aliquid illo ab, iure expedita quisquam
perspiciatis aut veniam f
acilis quibusdam
minima esse qui eos modi ut ipsa?
Natus!
</p>
<a href="post.html">Read More</a>
</article>
</section>
<aside>
<h3>Categories</h3>
<nav>
<ul>
<li><a href="£">Category 1</a></li>
<li><a href="£">Category 2</a></li>
<li><a href="£">Category 3</a></li>
</ul>
</nav>
</aside>
<footer id="mainFooter">
<p>Copyright © 2020, My Website</p>
</footer>
</body>
</html>