-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
32 lines (26 loc) · 866 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Lucas Burkholder</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="styles/w3.css">
<link rel="stylesheet" href="styles/LBStyle.css">
<script src="scripts/mainScript.js" type="text/javascript"></script>
</head>
<body>
<!-- Navbar (sit on top) -->
<div w3-include-html="includes/navbar.html"></div>
<div class="navbar-spacer"></div>
<div class="w3-content w3-padding" style="max-width: 1564px">
<p>About page here</p>
</div>
<div w3-include-html="includes/footer.html"></div>
<script>includeHTML();</script>
</body>
</html>
<!--
Notes:
use w3-container to style <article> and <section> elements
use <code>? tag for code examples
-->