-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutpage.html
61 lines (39 loc) · 1.78 KB
/
aboutpage.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
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<title>INVISIBLE CHAIR PROJECT - About</title>
<meta charset="UTF-8" />
<meta name="author" content="Erin Vasquez" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- This makes it pretty on all screens apparently -->
<meta name="description" content="Home to wonders of the universe." />
<meta name="revised" content="Erin Vasquez, 7/8/2022" />
<meta http-equiv="Content-Script-Type" content="text/JavaScript" />
<!-- <link rel="stylesheet" href="/css/sourceStyle.css"> -->
<link rel="stylesheet" href="./css/sourceStyle.css">
<!--Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<!--Another stylesheet?-->
<link href="https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,200;0,300;0,400;1,200;1,300;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<!--JS SCRIPTS
<script type="text/javascript" src="js/buttonclicks.js"></script> -->
</head>
<body>
<header id="title"><h1>INVISIBLE CHAIR PROJECT</h1></header>
<div id="main_container">
<div id="nav_menu">
<ul id="nav">
<li><a href="./sourcepage.html">THE INVISIBLE CHAIR PROJECT</a></li>
<li><a href="./blogpage.html">Blog</a></li>
<li><a href="./resumepage.html">Resume</a></li>
<li><a href="./aboutpage.html">About this site</a></li>
</ul>
</div>
<div id="main_content">
<article>
<h2>About</h2>
<p>Under construction.</p>
</article>
</div>
</div>
</body>
</html>