-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 1.63 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
53
54
55
<html>
<head>
<style type="text/css">
body {
width: auto;
margin: 0px;
padding: 0px;
color: #2D506B;
font: normal 12px verdana, sans-serif;
line-height: 1.6em;
background-color: #325C68;
}
div.main {
background-color: white;
width: 600px;
margin: 3em auto;
padding: 30px 40px;
border-radius: 20px;
box-shadow: 1px 1px 40px black;
}
div.main p {
margin: 1em;
}
a {
color: #0AA8E9;
text-decoration: none;
}
a:hover {
color: #990000;
}
ul {
list-style: none;
padding-left: 20px;
}
</style>
</head>
<body>
<div class="main">
<h1>Webby Playground</h1>
<p>
Hey! My name is Henry, and this is my github site. I have a very
simple <a href="blog/index.html">blog</a> on here, and I might
make some other pages. Who knows? I'm really just going to use
this thing as a place to dump my thoughts.
</p><p>
My simple blog also has a <a href="blog/archive.html">simple
archive</a>. Have a look through there for blog posts you might
find interesting. Or don't.
</p>
</div>
</body>
</html>