-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
36 lines (28 loc) · 923 Bytes
/
resume.html
File metadata and controls
36 lines (28 loc) · 923 Bytes
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
<!DOCTYPE html>
<html lang="en">
<nav class="navbar">
<div class="logo">Andres Wallace</div>
<div class="links">
<a href="index.html">About Me</a>
<a href="projects.html">Projects</a>
<a href="resume.html">Resume</a>
<a href="code.html">Code Samples</a>
</div>
</nav>
<head>
<meta charset="UTF-8">
<title>Resume</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<section>
<h2>Resume</h2>
<p>Gameplay programmer specializing in Unity (C#), with experience in movement systems, combat mechanics, and game feel.</p>
<p>You can view or download my resume below.</p>
<div class="resume-wrapper">
<iframe id="resumeFrame" src="CV-AndresWallace2.pdf"></iframe>
</div>
<a href="CV-AndresWallace2.pdf" class="resume-btn" download>
Download PDF
</a>
</section>