forked from ConnieLuong/CaMo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmore.html
More file actions
31 lines (25 loc) · 755 Bytes
/
more.html
File metadata and controls
31 lines (25 loc) · 755 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Camo - Help</title>
<!--Stylesheets-->
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="css/more.css">
</head>
<body>
<!--Menu Bar-->
<nav id="menu"></nav>
<h1>This is the more page!</h1>
<!--More Options-->
<div class="content">
<ul>
<li><a href="more_page/accountSettings.html">Account Settings</a></li>
<li><a href="more_page/help.html">Help</a></li>
<li><a href="index.html"><button id="logout-button" type="button">Log out</button></a></li>
</ul>
</div>
<!-- Load Scripts-->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/mainpages.js"></script>
</body>
</html>