-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (39 loc) · 1.24 KB
/
Copy pathindex.html
File metadata and controls
45 lines (39 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nicolas Randazzo</title>
<link rel="stylesheet" href="style.css" >
</head>
<body>
<header>
<h1>Hi, I'm Nic.</h1>
<h2>
Use these buttons to view and download my resume.</h2>
</header>
<div>
<button onclick="loadResume('refs/NicolasRandazzoResumeDE.pdf')">Data Engineering</button>
<button onclick="loadResume('refs/NicolasRandazzoResumeSWE.pdf')">SWE</button>
<button onclick="downloadResume(this)">Download Current Resume</button>
</div>
<div id="resume-structured">
</div>
<div id="project-content">
<h2>Projects</h2>
<p>Work in Progress here.. possibly links to dashboards/views of dashboards? Or direct links to GitHub projects</p>
</div>
<div id="git-content">
<a href="https://github.com/netzworld" aria-label="github-link">
<i class="fa fa-github" aria-hidden="true"></i>
<span>
GitHub
</span>
</a>
</div>
<!-- PDF.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.11.174/pdf.min.js"></script>
<!-- parser -->
<script src="parse.js"></script>
</body>
</html>