-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 931 Bytes
/
Copy pathindex.html
File metadata and controls
41 lines (41 loc) · 931 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jake Dahm</title>
<style>
html { height: 100%; }
body {
height: 100%;
background-color: #333;
font-family: Arial,Helvetica Neue,Helvetica,sans-serif;
font-size: 40px;
color: #fff;
}
h1 { color: #fff; text-align: center;}
ul.links {
display: flex;
justify-content: center;
list-style: none;
padding: 0;
}
.links a {
color: #fff;
text-decoration: none;
padding: 20px;
background-color: transparent;
border: 1px solid #fff;
}
</style>
</head>
<body>
<h1>Jake Dahm</h1>
<ul class="links">
<li>
<a href="https://github.com/jakedahm" title="GitHub">GitHub</a>
<a href="https://twitter.com/JacobDahm" title="Twitter">Twitter</a>
</li>
</ul>
</body>
</html>