-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (68 loc) · 2.17 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Kevin Marr">
<meta name="description" content="Kevin Marr's personal website.">
<meta name="author" content="Kevin Marr">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-135522043-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-135522043-1');
</script>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400|Rubik:900" rel="stylesheet">
<style>
body {
background-color: #eff4f9;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 650px;
margin: 0 auto;
padding: 100px 30px;
text-align: center;
}
h1 {
font-family: 'Rubik', sans-serif;
font-size: 50px;
font-weight: 900;
color: #0061ff;
margin: 0 0 50px 0;
}
.body-text {
font-family: "Roboto Mono", monospace;
font-size: 16px;
font-weight: 400;
line-height: 2;
color: #191d21;
}
p {
margin: 0 0 50px 0;
}
.link-block {
margin: 8px 0;
}
a {
text-decoration: underline;
color: #191d21;
}
</style>
</head>
<body>
<div class="container">
<h1>Hi there, I'm Kevin.</h1>
<p class="body-text">
I'm a Product Manager in San Francisco. I've enjoyed
professional roles in marketing, analytics, solutions
consulting, and sales. I'm passionate about data and
how humans interact with it.
</p>
<div class="body-text link-block"><a href="mailto:kevin@kevinmarr.com">Contact</a></div>
<div class="body-text link-block"><a href="https://www.linkedin.com/in/kmarr/">LinkedIn</a></div>
</div>
</body>
</html>