-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (77 loc) · 2.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ryan Spradlin</title>
<link rel="canonical" href="https://ryanspradlin.com">
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "Person",
"name" : "Ryan Spradlin",
"url" : "https://ryanspradlin.com",
"image": "https://ryanspradlin.com/ryan-spradlin.jpg",
"sameAs" : [
"https://facebook.com/ryan.spradlin",
"https://github.com/ryanspradlin",
"https://linkedin.com/in/ryanspradlin",
"https://twitter.com/rryyan"
]
}
</script>
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
color: #777;
font: 400 24px/2 "Avenir Next", "Avenir", Helvetica, Arial, sans-serif;
text-align: center;
text-transform: lowercase;
}
.wrapper {
margin: 40px auto;
width: 320px;
}
h1 {
color: #222;
font-size: 44px;
font-weight: 500;
margin-bottom: 10px;
}
ul {
display: inline-block;
list-style: square;
margin-left: 18px;
}
li {
text-align: left;
}
a {
color: #39c;
text-decoration: none;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3MWH24PTBL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3MWH24PTBL');
</script>
</head>
<body>
<div class="wrapper">
<h1>Ryan Spradlin</h1>
<ul>
<li><a href="mailto:ryan@cotangent.org">Email</a></li>
<li><a href="https://facebook.com/ryan.spradlin">Facebook</a></li>
<li><a href="https://github.com/ryanspradlin">GitHub</a></li>
<li><a href="https://linkedin.com/in/ryanspradlin">LinkedIn</a></li>
<li><a href="https://twitter.com/rryyan">Twitter</a></li>
</ul>
</div>
</body>
</html>