-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
34 lines (34 loc) · 1.06 KB
/
Copy pathabout.html
File metadata and controls
34 lines (34 loc) · 1.06 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
<!DOCTYPE HTML>
<html>
<head>
<title>Message Board</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="functions.js"></script>
<meta charset="utf-8"/>
</head>
<body>
<div>
<h1>Awesome Message Board</h1>
</div>
<div id="navbar">
<header>
<ul>
<li><a href="main.html">Home</a></li>
<li><a class= "currentPage" href="about.html">About</a></li>
</ul>
</header>
</div>
<div id="info">
<header>
<p>About</p>
</header>
</div>
<div>
<p>
I'm Andrew Choi and I'm currently pursuing a computer science degree at UBC.
<br />
This site is a simple exercise in HTML, CSS and JavaScript to design a message board where users can write and post their own messages.
</p>
</div>
</body>
</html>