-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (50 loc) · 1.92 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Jarod Reichel's Web Dev Blog</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Exo&family=Roboto&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<style>
body {
font-family: 'Roboto', Helvetica, sans-serif;
}
header {
background-color: #450084;
color: #cbb677;
padding: 10px
}
h1, h2 {
font-family: 'Exo', sans-serif;
}
</style>
</head>
<body>
<header>
<h1>Jarod Reichel's CS 347 Web Development Blog - Fall 2021</h1>
</header>
<main>
<h2>Entries by Week</h2>
<ol>
<li>September 3rd - Missing</li>
<li><a href="september_10.html">September 10th</a></li>
<li><a href="september_17.html">September 17th</a></li>
<li><a href="september_24.html">September 24th</a></li>
<li>October 1st - Not Applicable</li>
<li>October 8th - Missing</li>
<li><a href="october_15.html">October 15th</a></li>
<li>October 22nd - Not Applicable</li>
<li>October 29th - Not Applicable</li>
<li><a href="november_5.html">November 5th</a></li>
<li><a href="november_12.html">November 12th</a></li>
<li><a href="november_19.html">November 19th</a></li>
<li><a href="december_3.html">December 3rd</a></li>
<li><a href="december_10.html">December 10th</a></li>
</ol>
</main>
<footer>
<p>Site by Jarod Reichel</p>
</footer>
</body>
</html>