-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
98 lines (95 loc) · 3.26 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-175682428-2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-175682428-2");
</script>
<script
src="https://cdn.lr-ingest.io/LogRocket.min.js"
crossorigin="anonymous"
></script>
<script>
window.LogRocket && window.LogRocket.init("g4rin8/portfolio-ihgmi");
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"
/>
<link rel="stylesheet" href="css/index.css" type="text/css" />
<link rel="stylesheet" href="css/dayNight.css" type="text/css" />
<link rel="shortcut icon" href="img/me.png" />
<title>Andy Young - Software Engineer</title>
</head>
<body class="light-mode">
<label class="dayNight hidden">
<input type="checkbox" checked />
<div></div>
</label>
<div class="container">
<header class="hero">
<div class="hero-content">
<p class="hero-text">Hey, I'm <b>Andy Young</b>!</p>
<p class="hero-text">
Just a UCSD Computer Engineering graduate from Hawai'i who
(surprise, surprise) likes to surf and code.
</p>
<p class="hero-text">
Currently a Software Engineer at
<a href="https://aurora.tech/" target="_blank">Aurora</a>.
</p>
<div class="hero-icons">
<a
class="fa-stack"
href="https://www.linkedin.com/in/andy-young-327b17132"
target="_blank"
>
<i class="fas fa-stack-2x fa-square"></i>
<i class="fab fa-stack-2x fa-linkedin"></i>
</a>
<a
class="fa-stack"
href="https://github.com/ayoung19"
target="_blank"
>
<i class="fas fa-stack-2x fa-square"></i>
<i class="fab fa-stack-2x fa-github-square"></i>
</a>
<a
class="fa-stack"
href="https://www.instagram.com/youngandy_"
target="_blank"
>
<i class="fas fa-stack-2x fa-square"></i>
<i class="fab fa-stack-2x fa-instagram-square"></i>
</a>
<a class="fa-stack" href="mailto:[email protected]" target="_blank">
<i class="fas fa-stack-2x fa-square"></i>
<i class="fas fa-stack-2x fa-envelope-square"></i>
</a>
<a class="resume-button" href="resume.pdf" target="_blank"
>RESUME</a
>
</div>
</div>
<img
class="hero-image"
src="img/me.png"
alt="drawing of me by my gf :3"
title="drawing of me by my gf :3"
/>
</header>
</div>
<script src="js/dayNight.js"></script>
</body>
</html>