-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (103 loc) · 4.63 KB
/
index.html
File metadata and controls
103 lines (103 loc) · 4.63 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
<link
href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./stylesheets/main.css" />
<title>Hey, I'm Taylor Dorsett</title>
</head>
<body>
<header>
<div class="flex justify-center mt-4">
<div class="p-2">
<a
href="https://www.linkedin.com/in/taylordorsett/"
target="_blank"
aria-label="LinkedIn Profile"
>
<img
src="images/in.png"
alt="LinkedIn logo"
class="invert social-media-icon"
/>
</a>
</div>
<div class="p-2">
<a
href="https://github.com/taylorod"
target="_blank"
aria-label="GitHub Profile"
>
<img
src="images/github.png"
alt="GitHub logo"
class="social-media-icon"
/>
</a>
</div>
</div>
</header>
<section>
<div class="container mx-auto">
<div class="flex flex-wrap">
<div class="w-full md:w-1/2 flex justify-center">
<img
src="images/me.jpg"
alt="Photo of Taylor Dorsett in Iceland"
class="main-image"
/>
</div>
<div class="w-full md:w-1/2 flex justify-center">
<pre class="my-information">
<span class="keyword">const</span> <span class="default">me</span> = {
<span class="property">name</span>: <span class="string">"taylor dorsett"</span>,
<span class="property">information</span>: {
<span class="property">phone</span>: <span class="keyword">undefined</span>,
<span class="property">email</span>: <span class="string">"dorsetttaylordev@gmail.com"</span>,
<span class="property">location</span>: <span class="string">"missoula, mt"</span>,
<span class="property">previousLocations</span>: [<span class="string">"chicago"</span>, <span class="string">"vermont"</span>],
<span class="property">employment</span>: [
{
<span class="property">company</span>: <a href="https://www.homechef.com/" class="text-blue-500 underline" aria-label="Home Chef website"><span class="string">"home chef"</span></a>,
<span class="property">title</span>: <span class="string">"software engineer II"</span>,
<span class="property">status</span>: <span class="string">"current role"</span>,
},
{
<span class="property">company</span>: <a href="https://www.levels.fyi/" class="text-blue-500 underline" aria-label="Levels.fyi website"><span class="string">"levels.fyi"</span></a>,
<span class="property">title</span>: <span class="string">"engineer"</span>,
<span class="property">status</span>: <span class="string">"past role"</span>,
}
],
},
<span class="property">likes</span>: [
<a class="likes" aria-label="Reading"><span class="string">"reading"</span></a>,
<a href="https://smoothcomp.com/en/profile/803695" class="likes text-blue-500 underline" aria-label="BJJ profile"><span class="string">"bjj"</span></a>,
<a href="http://www.hackertyper.com/" class="likes text-blue-500 underline" aria-label="Hackertyper website"><span class="string">"coding"</span></a>,
<a href="https://www.taylordorsett.com/poker_seater/" class="likes text-blue-500 underline" aria-label="Poker Seater website"><span class="string">"poker"</span></a>,
<a href="https://store.steampowered.com/curator/45035411/" class="likes text-blue-500 underline" aria-label="Steam Curator page"><span class="string">"video games"</span></a>,
<a class="likes" aria-label="Tie-dye shirts"><span class="string">"tie-dye shirts"</span></a>,
<a href="https://www.kiva.org/lender/dorsetttaylor" class="likes text-blue-500 underline" aria-label="Kiva lender profile"><span class="string">"charities"</span></a>
],
<span class="property">etc</span>: [
<a href="https://www.youtube.com/channel/UC0gAFom3mR0uvJp2pVhmXuw" class="etc text-blue-500 underline" aria-label="YouTube channel"><span class="string">"video podcast"</span></a>
]
}
</pre>
</div>
</div>
<div class="flex justify-center">
<div class="w-10/12 text-center">
<p class="software-engineer">
<span>Software Engineer, former (recovering) Tech Recruiter</span>
</p>
</div>
</div>
</div>
</section>
</body>
</html>