-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbio.html
55 lines (45 loc) · 1.63 KB
/
bio.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
<!doctype html>
<html lang="en">
<head>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="dark" />
<link rel="stylesheet" href="css/pico.min.css" />
<style>
/* Reduce the container width */
.container {
max-width: 800px; /* Adjust the value to your desired width */
}
</style>
<title>Alexander S. Corey</title>
</head>
<body>
<main class="container">
<h1><a style="text-decoration:none;" href="index.html" class="contrast">Alexander S. Corey</a></h1>
<nav>
<ul>
<li><a href="#">About Me</a></li>
<li><a href="static/AlexCoreyResume.pdf" target="_blank" class="secondary">Resume</a></li>
<li><a href="https://github.com/acoreynews" target="_blank" class="secondary">GitHub</a></li>
<li><a href="https://www.linkedin.com/in/alexander-s-corey" target="_blank" class="secondary">LinkedIn</a></li>
</ul>
</nav>
<figure>
<img
src="images/JamsilStadium.jpg"
alt="Picture of Alex here"
/>
<figcaption>
Alex at Jamsil Baseball Stadium in Seoul, South Korea
</figcaption>
</figure>
<blockquote>
“I'm an engineer interested in python, devops, data and news media. <br>For the past 8 years, I've worked in network operations center engineer roles across three companies. <br>Prior to that, I worked as a journalist in San Diego, Phoenix and Las Vegas before going back to school for computer science and beginning a career in IT.”
</blockquote>
</main>
</body>
</html>