-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (52 loc) · 1.09 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
56
57
58
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>gordon kristan</title>
<link href='http://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<style>
body {
font-family: 'Varela Round', Arial, Helvetica, sans-serif;
background-color: #26addd;
color: black;
}
#main {
width: 100%;
text-align: center;
padding-top: 15%;
}
.name {
font-size: 5em;
}
.links {
font-size: 1.2em;
}
.links a, .links a:visited {
text-decoration: none;
color: black;
}
</style>
</head>
<body>
<div id="main">
<span class="name">gordon kristan</span>
<div class="links">
<span>
<a href="resume.pdf">resume</a>
</span>
·
<span>
<a href="http://www.linkedin.com/pub/gordon-kristan/5a/740/5a8/">linkedin</a>
</span>
·
<span>
<a href="https://github.com/gordonkristan">github</a>
</span>
·
<span>
<a href="http://stackoverflow.com/users/1277669/gjk">stackoverflow</a>
</span>
</div>
</div>
</body>
</html>