-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 927 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>
<head>
<title>Welcome</title>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif' rel='stylesheet' type='text/css'>
<style type='text/css'>
body {
font-family: Droid Serif, Arial;
}
#container {
margin:0 auto;
text-align:center;
margin-top:15%;
}
#container h1 {
font-weight:normal;
}
#container a {
color:rgb(0,65,99);
text-decoration:none;
}
.small {
font-size:14px;
}
</style>
</head>
<body>
<div id='container'>
<h1>Hello there!</h1>
<p>My name is Michael Kelly. I studied (a bit) <a href='http://duke.edu'>@Duke</a>, worked <a href='https://microsoft.com'>@Microsoft</a> and am now very happily tinkering away <a href='https://plaid.com'>@Plaid</a>.</p>
<p>Find me on <a href='http://github.com/michaelckelly'>GitHub</a>.</p>
</div>
</body>
</html>