-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
65 lines (54 loc) · 2.21 KB
/
resume.html
File metadata and controls
65 lines (54 loc) · 2.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Resume – G. Mark Kanyer Portfolio</title>
<link rel="icon" type="image/png" href="images/headshot1.png">
<link rel="stylesheet" href="resume.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Site Title -->
<div class="site-title">
<h1>G. Mark Kanyer Portfolio</h1>
</div>
<!-- Navigation -->
<nav>
<a href="index.html"><i class="fas fa-home"></i> Home</a>
<a href="about.html"><i class="fas fa-user"></i> About</a>
<a href="resume.html"><i class="fas fa-file-alt"></i> Resume</a>
<a href="experience.html"><i class="fas fa-briefcase"></i> Experience</a>
<a href="contact.html"><i class="fas fa-envelope"></i> Contact</a>
<a href="blog.html"><i class="fas fa-comment-dots"></i> Blog</a>
</nav>
<!-- Main Content -->
<div class="content">
<h2>Resume</h2>
</div>
<!-- Centered Resume PDF -->
<div style="display: flex; justify-content: center;">
</div>
</div>
<!-- Fullscreen, Centered PDF Resume -->
<div style="display: flex; justify-content: center; align-items: center; width: 100vw; height: 100vh; margin: 0; padding: 0;">
<object
data="images/Resume.pdf#zoom=100"
type="application/pdf"
style="width: 80%; height: 90%; max-width: 1200px; max-height: 1600px; box-shadow: 0 0 20px rgba(0,0,0,0.5);"
>
<p>Your browser does not support PDFs. You can <a href="images/Resume.pdf" target="_blank">download the resume here.</a></p>
</object>
</div>
</div>
<!-- Footer -->
<footer class="contact-footer">
<h3><strong>Contact</strong></h3>
<div class="footer-links">
<a href="mailto:Markkanyer@yahoo.com"><i class="fas fa-envelope"></i> Email</a>
<a href="https://www.linkedin.com/in/markkanyer/" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a href="https://github.com/Markkanyer" target="_blank"><i class="fab fa-github"></i> GitHub</a>
<a href="https://tacomauw.joinhandshake.com/profiles/markkanyer" target="_blank"><i class="fas fa-h-square"></i> Handshake</a>
</div>
</footer>
</body>
</html>