-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
127 lines (123 loc) · 5.35 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nicholas Boss | Resume</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Nicholas Boss - Resume Page">
<meta name="author" content="Nicholas Boss">
<meta property="og:title" content="Nicholas Boss | Resume">
<meta property="og:description" content="Nicholas Boss - Resume Page">
<meta property="og:type" content="website">
<meta property="og:image" content="https://raw.githubusercontent.com/NicholasBoss/farseerind/main/images/nicholas-boss-logo.png">
<meta property="og:url" content="https://nicholasboss.github.io/farseerind/resume.html">
<link rel="stylesheet" href="./styles/normalize.css">
<link rel="stylesheet" href="./styles/base.css">
<link rel="stylesheet" href="./styles/medium.css">
<link rel="stylesheet" href="./styles/larger.css">
<link rel="icon" href="favicon.ico">
<script src="./scripts/hamburger-menu.js" defer></script>
<script src="./scripts/getdates.js" defer></script>
<script src="./scripts/resume.js" defer></script>
<script src="./scripts/projectnames.js" defer></script>
<script src="./scripts/dropdown.js" defer></script>
</head>
<body>
<header>
<a id="logo_link" href="index.html">
<img class="logo" src="./images/nicholas-boss-logo.png" alt="Nicholas Boss Logo">
</a>
<button id="menu" aria-label="hamburger-menu"></button>
<nav>
<ul class="navigation">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a id="active" href="resume.html">Resume</a>
</li>
<li class="projects">
<a href="projects.html">Projects</a>
<img class="dropbtn" src="./images/angle-down-solid.svg" alt="Angle Down Icon">
<div id="dropdown" class="dropdown-content project-names"></div>
</li>
<li>
<a href="tainfo.html">TA</a>
</li>
<li class="login">
<button onclick="document.getElementById('id01').style.display='block'">Login</button>
</li>
</ul>
</nav>
<div id="login-form">
<!-- The Modal -->
<div id="id01" class="modal">
<!-- Modal Content -->
<form class="modal-content animate" action="redirect.html" method="get">
<div class="imgcontainer">
<img src="./images/nicholas-boss-logo.png" alt="Avatar" class="avatar">
</div>
<div class="container">
<label><b>Username</b>
<input type="text" placeholder="Enter Username" name="uname" required autocomplete="off"></label>
<label><b>Password</b>
<input type="password" placeholder="Enter Password" name="psw" required autocomplete="off"></label>
<button class="formbtn" type="submit">Login</button>
<button class="formbtn cancelbtn" type="button" onclick="document.getElementById('id01').style.display='none'">Cancel</button>
</div>
</form>
</div>
</div>
</header>
<main id="resume-main">
<div class="download">
<h1>My Resume</h1>
<a href="./data/resume.pdf" download="resume.pdf">
<img src="./images/download-solid.svg" alt="Download Image">
</a>
</div>
<hr>
<h2>Nicholas Boss</h2>
<hr>
<div class="res-skills"><h3>Skills</h3></div>
<hr>
<div class="res-education"><h3>Education</h3></div>
<hr>
<div class="res-dss"><h3>Data Science Society (DSS)</h3></div>
<hr>
<div class="res-computing-team"><h3>Computing Team</h3></div>
<hr>
<div class="res-prof-exp"><h3>Professional Experience</h3></div>
<hr>
<div class="res-pers-exp"><h3>Personal Experience</h3></div>
<hr>
<div class="res-projects"><h3>Programming Projects</h3></div>
<hr>
<div class="res-honor-award"><h3>Honors/Awards</h3></div>
</main>
<footer>
<div class="info">
<p>Nicholas Boss © <span id="currentyear"></span></p>
</div>
<div class="modified">
<p>
<a href="site-plan.html">Site Plan</a>
</p>
<p>Last Modified: <span id="lastmodified"></span></p>
</div>
<div class="contact">
<p class="social">
<a title="Visit my Facebook" href="https://www.facebook.com/nicholas.boss.376/">
<img class="icon" src="images/facebook.svg" alt="Facebook Icon">
</a>
<a title="Visit my LinkedIn" href="https://www.linkedin.com/in/nicholas-boss">
<img class="icon" src="images/linkedin-in.svg" alt="LinkedIn Icon">
</a>
<a title="Visit my GitHub" href="https://github.com/NicholasBoss">
<img class="icon" src="images/github.svg" alt="GitHub Icon">
</a>
</p>
</div>
</footer>
</body>
</html>