-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (45 loc) · 2.06 KB
/
index.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
<!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/index.css" rel="stylesheet">
<link href="./styles/shared.css" rel="stylesheet">
</head>
<body>
<div class="content">
<div class="nav">
<a href="index.html" class="active">About Me</a>
<a href="projects.html">My Projects</a>
<a href="work.html">More Info</a>
</div>
<div id="intro">Hi, I'm </div>
<h1>Matt Widenhouse</h1>
<h2>Software Engineer & Web App Developer</h2>
<a id="resume" href="assets/mattwidenhouse_resume.pdf">Resume</a>
<div id="about">
<!-- <h3>About Matt</h3> -->
<img id="headshot" src="assets/MattWidenhouse.jpg">
<p id="text">
I am a software engineer out of Norfolk, VA. and currently in my final semester at Old Dominion University where I
will graduate with a B.S. in Computer Science. My specialization is in web applications, graphics, and video game development,
and I am expanding into machine learning, mobile, and embedded systems development.
</p>
</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>