-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
62 lines (54 loc) · 2.23 KB
/
Copy pathresume.html
File metadata and controls
62 lines (54 loc) · 2.23 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
<!-- Himanshu Patel, CISC474, Personal Web Page 1, hpatell@udel.edu -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Resume</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styles.css"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-211559384-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-211559384-1');
</script>
</head>
<body>
<!-- Navigation Bar: Buttons/Links to other web pages (AboutMe and Course Site) -->
<div class="bar">
<a href="https://hpatell.github.io/">Home</a>
<a href="https://hpatell.github.io/aboutMe.html">About Me</a>
<a href="https://hpatell.github.io/resume.html">Resume</a>
<a href="https://hpatell.github.io/projects.html">Projects</a>
<a href="https://hpatell.github.io/contactForm.html">Contact Form</a>
<div class="dropdown">
<button class="dropdown-button">Class Links</button>
<div class="class-links">
<a href="https://pang17.github.io/">Previous Student</a>
<a href="https://CaseStingray173.github.io/">Next Student</a>
<a href="https://mattm401.github.io/">CISC474 Website</a>
</div>
</div>
</div>
<!-- Header for resume.html -->
<h1 style="font-size:250%">Resumé</h1>
<div class="download">
<form action="files/Resume.pdf" method="get">
<button class="downloadButton">Download as PDF</button>
</form>
</div>
<!-- Resume -->
<div class="resume-page">
<embed type="text/html" src="files/resumeHP.html" width="750" height="700">
</div>
<!-- Footer -->
<footer>
<div style="font-size:150%">Contact Me</div>
<a href="https://www.linkedin.com/in/himanshu30patel" class="fa fa-linkedin"></a>
<a href="https://github.com/hpatell" class="fa fa-github"></a>
<a href="mailto:hpatell@udel.edu" class="fa fa-google"></a>
</footer>
</body>
</html>