-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
134 lines (124 loc) · 3.19 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
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
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/reset.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap"
rel="stylesheet"
/>
<title>Blog</title>
<style>
html {
font-family: "Open Sans", sans-serif;
}
h1 {
font-size: 80px;
}
h2 {
font-size: 50px;
}
p {
font-size: 20px;
}
li {
font-size: 20px;
}
#pageLinks {
display: flex;
align-items: center;
justify-content: center;
}
#pageLinks a {
text-decoration: none;
color: #e9dac4;
}
#nav {
background-color: #290a00;
height: 90px;
width: 100%;
position: fixed;
}
#nav img {
width: 75px;
float: left;
position: absolute;
}
#nav li {
list-style-type: none;
float: left;
padding-right: 30px;
color: #e9dac4;
}
#nav ul {
padding-top: 30px;
}
</style>
</head>
<body>
<div id="nav">
<img src="images/almondLogo.png" />
<div id="pageLinks">
<ul>
<li><a href="index.html"> Home </a></li>
<li><a href="stories.html"> Stories </a></li>
<li><a href="about.html"> About </a></li>
<li><a href="blog.html"> Blog </a></li>
<li><a href="contact.html"> Contact </a></li>
<li><a href="more.html"> More </a></li>
</ul>
</div>
</div>
<div id="backtotop">
<a href="#"> <p>↑</p> </a>
</div>
<div id="desc">
<div class="contSect" id="summary">
<div class="sectionHeader">
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<!-- Maybe find a cleaner way of doing this :oo -->
<h1 style="text-align: center">WHAT IS THE BLOG?</h1>
<br />
<br />
<p style="text-align: center">
The blog is a place for you to share your experiences and thoughts
on current events and issues happening around the world.
</p>
<br />
<br />
<h2 style="text-align: center">SOME THINGS TO KEEP IN MIND</h2>
<br />
<br />
<p style="text-align: center">
1. Your work will be reviewed before being shared on our platform
</p>
<p style="text-align: center">
2: Be respectful, be civil, be reasonable, and be professional
</p>
<p style="text-align: center">
3: No form of discrimination will be tolerated
</p>
<p style="text-align: center">
4: All blog posts come from uncertified sources, take each post with
a grain of salt and always seek out the facts before sharing
information.
</p>
</div>
</div>
</div>
<br />
<br />
<br />
<br />
<br />
<p style="text-align: center">
<a href="blogSubmission.html"> SUBMIT A BLOGPOST HERE!</a>
</p>
</body>
</html>