-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
157 lines (142 loc) · 6.54 KB
/
resume.html
File metadata and controls
157 lines (142 loc) · 6.54 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eric Xiao | Resume</title>
<link rel="icon" href="images/logo.svg" type="image/svg+xml">
<!-- Google Fonts -->
<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=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<!-- Modern CSS -->
<link rel="stylesheet" href="assets/css/modern.css">
<!-- FontAwesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Navigation -->
<nav class="nav" id="navbar">
<div class="nav-container">
<div class="nav-left">
<a href="index.html" class="nav-logo">Eric Xiao</a>
<a href="resume.html" class="nav-resume active">
<span class="resume-text">Resume</span>
</a>
</div>
<ul class="nav-menu" id="nav-menu">
<li><a href="resume.html" class="nav-link nav-link-mobile-only active">Resume</a></li>
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="mechanical.html" class="nav-link">Mechanical</a></li>
<li><a href="software.html" class="nav-link">Software</a></li>
<li><a href="message.html" class="nav-link">Contact</a></li>
</ul>
<div class="nav-toggle" id="nav-toggle">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<!-- Resume Section -->
<section class="section" style="min-height: auto; padding-top: 120px;">
<div class="container" style="max-width: 900px;">
<!-- Page Header -->
<div class="section-header">
<h1 class="section-title">Resume</h1>
<p class="section-subtitle">
Download my resume or view it below
</p>
</div>
<!-- Download Button -->
<div style="text-align: center; margin-bottom: var(--space-xl);">
<a href="resume/resume.pdf" download class="btn btn-primary">
<i class="fas fa-download"></i>
Download Resume (PDF)
</a>
</div>
<!-- PDF Viewer -->
<div style="background: var(--card-bg); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);">
<embed src="resume/resume.pdf"
type="application/pdf"
width="100%"
height="800px"
style="border: none;">
<!-- Fallback iframe -->
<iframe src="resume/resume.pdf"
width="100%"
height="800px"
style="border: none;">
<!-- Fallback message -->
<p style="padding: var(--space-xl); text-align: center; color: var(--text-secondary);">
Your browser does not support embedded PDFs.
<a href="resume/resume.pdf" download style="color: var(--accent-primary);">
Click here to download the resume.
</a>
</p>
</iframe>
</embed>
</div>
<!-- Navigation Buttons -->
<div class="btn-group" style="justify-content: center; margin-top: var(--space-2xl);">
<a href="index.html" class="btn btn-secondary">
<i class="fas fa-home"></i>
Return Home
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<p>© 2025 Eric Xiao. All rights reserved.</p>
<p>I like to game, walk my dog Mochi, and cook in my spare time.</p>
<p style="margin-top: var(--space-md);"><a href="directory.html" style="color: var(--accent-primary);">Project Directory</a></p>
</div>
<!-- Social Links -->
<div class="social-links">
<a href="https://www.linkedin.com/in/eric-xiaoy/" class="social-link" title="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/sixym3" class="social-link" title="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://www.instagram.com/sixym3/" class="social-link" title="Instagram">
<i class="fab fa-instagram"></i>
</a>
<a href="https://x.com/cyberbroker4729" class="social-link" title="Twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.instagram.com/mochi_is_a_shiba_inu" class="social-link" title="Mochi's Instagram">
<i class="fas fa-paw"></i>
</a>
</div>
</div>
</footer>
<!-- JavaScript -->
<script>
// Mobile Navigation Toggle
const navToggle = document.getElementById('nav-toggle');
const navMenu = document.getElementById('nav-menu');
navToggle.addEventListener('click', () => {
navMenu.classList.toggle('active');
});
// Close mobile menu when clicking on a link
document.querySelectorAll('.nav-link').forEach(link => {
link.addEventListener('click', () => {
navMenu.classList.remove('active');
});
});
// Navbar background on scroll
window.addEventListener('scroll', () => {
const navbar = document.getElementById('navbar');
if (window.scrollY > 50) {
navbar.style.background = 'rgba(10, 10, 10, 0.98)';
} else {
navbar.style.background = 'rgba(10, 10, 10, 0.95)';
}
});
</script>
</body>
</html>