-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
54 lines (53 loc) · 1.67 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M2ZHWKXGB1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M2ZHWKXGB1');
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/style.css?v=2.0">
<title>About</title>
</head>
<body>
<div class="navbar">
<div class="container">
<div class="navbar-title">
<h1>Hunter Lawson</h1>
</div>
<div class="navbar-subtitle">
<h2>software engineer</h2>
<div class="cursor"></div>
</div>
<nav class="navbar-navigation">
<ul>
<li>
<a href="/index.html">home</a>
</li>
<li>
<a href="/projects.html">projects</a>
</li>
<li>
<a href="/about.html" class="current">about</a>
</li>
</ul>
</nav>
</div>
</div>
<div id="canvas-container">
<main class="main-content">
<div class="container">
<section class="card" style="padding:3em 2em;">
this is some content
</section>
</div>
</main>
</div>
</body>
</html>