-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
27 lines (27 loc) · 1.08 KB
/
resume.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
<!DOCTYPE HTML>
<html>
<head>
<link rel="icon" href="resources/profile.jpg">
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="resumess.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
window.onload = function(){
$(".menu").load("menu.txt");
}
</script>
</head>
<body>
<div class="menu"></div>
<div class="resume fixedSize">
<!-- Uses pdf to js library from here: https://github.com/mozilla/pdf.js -->
<iframe src="pdfViewer/web/viewer.html?file=..%2f..%2fresources%2fVictorSunResume.pdf">
<div class="noIframe fixedSize">
<a href="pdfViewer/web/viewer.html?file=..%2f..%2fresources%2fVictorSunResume.pdf">Link to Resume</a>
</div>
</iframe>
</div>
<div class="contact fixedSize"></div>
</body>
</html>