-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
77 lines (65 loc) · 2.76 KB
/
resume.html
File metadata and controls
77 lines (65 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Gheleb Netabai - Resume</title>
<meta charset="utf-8">
<link rel="stylesheet" href="portfolioGN.css">
<link rel="icon" type="image/x-icon" href="Logo.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This page showcases Gheleb Netabai's current 2022 job resume. It references his clinical laboratory and technology experience (including languages like Java, C++, G/LabView, etc.)">
</head>
<body>
<h1>
<a href="index.html">Gheleb Netabai's Professional Portfolio</a>
</h1>
<nav>
<div class="navbar">
<a href="index.html">Home</a>
<a href="aboutMe.html">About Me</a>
<div class="dropdown">
<button class="dropbtn">Experience
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="resume.html">Resume</a>
<a href="profRefs.html">Professional References</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Portfolio
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="portfolioSD.html">Software Development</a>
<a href="portfolioH&S.html">Health & Sciences</a>
</div>
</div>
<a href="contact.html">Contact Information</a>
</div>
</nav>
<div id="wrapper">
<div id="resumehero"></div>
<main>
<h2>Experience :: Resume</h2>
<object data="Netabai_Gheleb_Résumé_2023.pdf" type="application/pdf" width="100%" height="700px">
<p>
It appears you don't have a PDF plugin for this browser. You can <a href="https://drive.google.com/file/d/1rxHCMyQ8d0G5hKG7YaFGXuekZjQxerGt/view?usp=sharing">click here to download the PDF file.</a>
</p>
</object>
</main>
<footer>
<br>
Copyright © 2023 Gheleb Netabai
<br>
<div id="last_modified"></div>
<script>
const lastModified = new Date(document.lastModified);
const formattedDate = lastModified.toLocaleDateString();
const message = `This page was last modified on: ${formattedDate}`;
const lastModifiedDiv = document.getElementById('last_modified');
lastModifiedDiv.textContent = message;
</script>
</footer>
</div>
</body>
</html>