-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
31 lines (29 loc) · 1.01 KB
/
resume.html
File metadata and controls
31 lines (29 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MD.Sameer Sayed - Resume</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="resume-page">
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<a href="index.html">Md.Sameer sayed</a>
</div>
<div class="nav-menu">
<a href="index.html" class="nav-link">Back to Portfolio</a>
<a href="assets/resume.pdf" download class="nav-link resume-btn">Download PDF</a>
</div>
</div>
</nav>
<div class="resume-container">
<div class="resume-viewer">
<iframe src="assets/resume.pdf" frameborder="0"></iframe>
</div>
</div>
<script src="script.js"></script>
</body>
</html>