-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjects.html
More file actions
40 lines (40 loc) · 1.15 KB
/
Copy pathProjects.html
File metadata and controls
40 lines (40 loc) · 1.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Contact Me</title>
<link rel="stylesheet" href="src/styles.css" />
</head>
<nav class="navbar">
<ul class="navlist">
<li class="nav-item">
<a class="nav-link" href="index.html">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Coursework.html">Coursework</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ContactMe.html">Contact Me</a>
</li>
</ul>
</nav>
<h1>Projects</h1>
<ul class="projects">
<li class="project">
<a href="https://github.com/beansighe/PORTaLAND" target="_blank"
>PORTaLAND</a
>
</li>
<li class="project">
<a href="https://gitlab.com/tierney6/sing_scribe" target="_blank"
>singScribe</a
>
</li>
<li class="project">One BlockChain to Rule Them All</li>
</ul>
</html>