-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoding.html
More file actions
30 lines (30 loc) · 1.12 KB
/
coding.html
File metadata and controls
30 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sam Boasman</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Nav Bar Section -->
<nav class="navbar">
<a href="./index.html" class="navbar__logo" title="Pog Champ"
>Sam</a
>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span><span class="bar"></span
><span class="bar"></span>
</div>
<div class="navbar__menu">
<a href="./index.html" class="navbar__link">Home</a>
<a href="coding.html" class="navbar__link">Coding</a>
<a href="resume.html" class="navbar__link">Resume</a>
<a href="contact.html" class="navbar__link">Contact</a>
</div>
</nav>
<div class="highlightBar"><br /></div>
<script src="app.js"></script>
</body>
</html>