-
Notifications
You must be signed in to change notification settings - Fork 0
/
work.html
61 lines (61 loc) · 2.79 KB
/
work.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
<link href="./styles/shared.css" rel="stylesheet">
<link href="./styles/work.css" rel="stylesheet">
</head>
<body>
<div class="content">
<div class="nav">
<a href="index.html">About Me</a>
<a href="projects.html">My Projects</a>
<a href="work.html" class="active">More Info</a>
</div>
<div id="current">
<div class="prefaceText">About my</div>
<h1>Current Work</h1>
<h2>At Old Dominion University</h2>
<p id="aboutWork">
For the last 2 years I have been working as a Full-Stack Engineer/Developer at the Batten College of Engineering &
Technology at Old Dominion University. We are building learning management systems with React, GraphQL,
Prisma, AWS, and Docker.
</p>
</div>
<div id="education">
<div id="ed-header">
<div>
<div class="prefaceText">My</div>
<h1>Education</h1>
</div>
<figure>
<img id="oduImg" src="assets/ODU.png" alt="Photo of ODU" />
<figcaption>Class of '23</figcaption>
</figure>
</div>
<div id="educationContent">
<h2>Old Dominion University</h2>
<div id="degreeInfo">
<h3>B.S. Computer Science</h3>
<h4>Minor - Actuarial Mathematics</h4>
</div>
</div>
</div>
<div class="links">
<a id="email" href="mailto:[email protected]"><img src="assets/icons/iconmonstr-email-1.svg" /></a>
<a id="github" href="https://github.com/frontoge"><img src="assets/icons/iconmonstr-github-1.svg" /></a>
<a id="linkedin" href="https://linkedin.com/in/mattwidenhouse"><img src="assets/icons/iconmonstr-linkedin-1.svg" /></a>
<a id="share" onclick="copyURL()"><img src="assets/icons/iconmonstr-share-9.svg" /></a>
<div class="vl"></div>
</div>
</div>
<script>function copyURL() {
navigator.clipboard.writeText("http://edenrp.net/frontoge");
alert("Copied URL to clipboard!");
}</script>
</body>
</html>