-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (20 loc) · 758 Bytes
/
index.html
File metadata and controls
22 lines (20 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body class="homepage">
<canvas id="particleCanvas"></canvas>
<div class="name-box">Matthew Voggel</div>
<div class="nav-container">
<h1><a href="content/projects.html"> Code Work </a></h1>
<h1><a href="content/proj-managed.html">Project Management</a></h1>
<h1><a href="content/contact.html">Connect</a></h1>
</div>
<script src="script.js"></script>
</body>
</html>