-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
70 lines (70 loc) · 2.81 KB
/
resume.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="resume.css">
<link rel="stylesheet" href="./css/all.css">
<link rel="icon" href="./photos/favicon.ico" type="image/x-con"/>
<title>Evan Greer's Portfolio</title>
</head>
<body>
<main>
<section id="header">
<section id="header-name">
<img src="./photos/name_nav.jpg" alt="evan greer">
</section>
<div class="nav-bar">
<a href="./index.html"><h2>Home</h2></a>
<a href="./projects.html"><h2>Projects</h2></a>
<a href="./resume.html"><h2>Resume</h2></a>
</div>
</section>
<section id="resume-section">
<div id="resume-title">
<img src="./photos/resume_title.jpg" alt="resume title">
</div>
<div id="resume-container">
<div id="resume-viewer">
<iframe src="Evan TK Greer - Resume.pdf"></iframe>
<img src="./photos/resume_screenshot.png">
<a href="./Evan TK Greer - Resume.pdf" download="Evan TK Greer - Resume.pdf">
<button id="download-resume-button">Download Resume</button>
</a>
</div>
</div>
</section>
<section id="footer">
<div class="nav-bar">
<h1>NAVIGATE</h1>
<i id="footer-nav-arrow" class="fas fa-arrow-circle-right"></i>
<h1 id="footer-nav-links">
<a href="./index.html">HOME</a> \\
<a href="./projects.html">PROJECTS</a> \\
<a href="./resume.html">RESUME</a>
</h1>
</div>
<div id="contact">
<div id="contact-photo">
<img src="./photos/footer_photo.JPG" alt="lucky cat logo">
</div>
<div id="contact-info">
<h1>Connect With Me</h1>
<h1 id="footer-email">[email protected]</h1>
<div id="contact-links">
<a href="https://www.linkedin.com/in/evantkgreer/" target=_blank>
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/evantk91" target=_blank>
<i class="fab fa-github"></i>
</a>
<a href="https://medium.com/@etgreer91" target=_blank>
<i class="fab fa-medium"></i>
</a>
</div>
</div>
</div>
</section>
</main>
</body>
</html>