-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
57 lines (54 loc) · 2.1 KB
/
blog.html
File metadata and controls
57 lines (54 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Mrs. Andrus's English Class</title>
</head>
<body>
<div class="menu-outer">
<div class="menu">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="content.html">CONTENT</a></li>
<li><a href="calendar.html">CALENDAR</a></li>
<li><a href="assignments.html">ASSIGNMENTS</a></li>
<li><a class="active" href="blog.html">BLOG</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</div>
<div class="content">
<h1>Mrs. Andrus's Blog</h1>
<p>Sometimes the things I most want to teach do not fit into our regular curriculum: lessons about life, love, and joy.</p>
<p>When I have a thing or two to say about these important subjects, I will put them here for you to enjoy :)</p>
<div class="blogpost">
<h4>It Sucks to be a Book</h4>
<p class="date">April 3rd, 2017</p>
<p>You know what really sucks? There are so many books in the world, no one can read all of them. That sucks for people. It sucks for books, too.
Even the most successful book will only be read by a fraction of the literate population of the Earth. Unless it's the Bible. Or Harry Potter.
For the rest of them, they are up a creek.</p>
</div>
<br>
<div class="blogpost">
<h4>Poems</h4>
<p class="date">December 9th, 2016</p>
<p>People are always trying</p>
<p>To put meaning</p>
<p>On poems</p>
<p>Or to put them</p>
<p>In a meter.</p>
<p>Can't we just</p>
<p>Let them be?</p>
</div>
<br>
<div class="blogpost">
<h4>Rant Time</h4>
<p class="date">August 21st, 2016</p>
<p>Here are some things that I'm mad about: People who don't acknowledge Shalladin. Actually that's it, that's the only one.</p>
</div>
</div>
<footer class="credit_label">
<p>This website designed by Berkeley Andrus. Source code can be found at <a href="https://github.com/bandrus5/260CreativeProject1">https://github.com/bandrus5/260CreativeProject1</a></p>
</footer>
</body>
</html>