-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 1.62 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Hind' rel='stylesheet' type='text/css'>
<style type="text/css">
body {
background: white;
text: #111;
}
.flex-container {
display: flex;
align-items: center;
justify-content: center;
}
.content {
flex-grow: 1;
max-width: 600px;
padding: 10px;
text-align: center;
}
.name {
font-family: Hind, sans-serif;
}
.about {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 300;
font-size: large;
}
a {
color: inherit;
}
</style>
<title>ajaska</title>
</head>
<body>
<div class="flex-container">
<div class="content">
<div class="name">
<h1>Arlan Jaska (ajaska)</h1>
</div>
<hr>
<p class="about">
<b>Software Engineer</b> based in <b>San Francisco</b>
specializing in <b>Full Stack Development</b>.
</p>
<p class="about">
<a href="f/ArlanJaska-Resume.pdf">Resume here.</a>
</p>
</div>
</div>
</body>
</html>