-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Teddy's Thoughts</title>
<link rel="stylesheet" href="../css/style.css" type="text/css" media="screen" charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
body,h1,h2,h3,h4,h5 {font-family: "Raleway", sans-serif}
h1, h3, div {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
div {
padding-left: 40px;
}
</style>
</head>
<body>
<h1>Teddy's Thoughts</h1>
<h3>By Theodore Wachtler</h3>
<div>
<p style="font-style: italic;">I write stuff.</p>
<p>Here are some of my articles:</p>
<ul>
<li><a href="./topaz.html">"Journey to Topaz" review and summary</a>
<li><a href="./apollo11.html">Apollo 11 summary</a>
<li><a href="./genghis.html">"Genghis Khan and his Hawk" summary</a>
</ul>
<img src="./hamster.png"/>
</div>
</body>
</html>