-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Dom's Personal Site</title>
<meta charset="utf-8" />
<meta name="author" content="Dominic Fezzie"/>
<meta
name="description"
content="Dominic Fezzie's personal website."/>
<link rel="stylesheet" href="base-style.css">
<link rel="icon" href="./static/tulip-favicon.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div>
<h1>Dominic Fezzie's Personal Site</h1>
</div>
</header>
<main>
<section class="summary">
<h2>Hello! 👋</h2>
<p>I'm Dominic, a Software Engineer based in Seattle. I currently am working to build the future of story telling at <a href="https://naria.ai">Naria.ai</a>.
My past experience ranges from managing a team of Anti-Cheat engineers at Amazon Games,
building an AWS service to manage application networking with Envoy proxies,
digital fulfillment of video games,
and building a learning platform to help improve onboarding for solutions architects.
</p>
<p>When I'm not working, you'll find me chasing my three children down the street, walking my dogs and chatting with my wife.
I also make some time to play video games, tinker with new tech, and watch the occasional Netflix show.
I'm currently playing Baldur's Gate 3 and Helldivers 2.
</p>
</section>
<section class="contact">
<h2>Let's connect!</h2>
<div class="contactActions">
<div class="contactAction"><a href="https://www.linkedin.com/in/dominicfezzie/" target="_blank"><img class="contactAction" src="./static/linkedin.svg"></a></div>
<div class="contactAction"><a href="mailto:dfezzie@gmail.com"><img class="contactAction" src ="./static/envelope-solid.svg"></a></div>
</div>
</section>
</main>
<footer class="footer"><em>Last Updated - July 2024</em></footer>
</body>
</html>