-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsaved.html
33 lines (32 loc) · 1.14 KB
/
saved.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
<!doctype html>
<html>
<head>
<title>MTB</title>
<link type="text/css" rel="stylesheet" href="./style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type='text/javascript' src='./script.js'></script>
</head>
<body>
<header class="main-header">
<div class="header-navbar">
<a href="index.html" class="navbar-home">Cape Town MTB</a>
<a class="navbar-buttons" href="aboutMe.html">About Me</a>
<a class="navbar-buttons" href="contactMe.html">Contact Me</a>
<a class="navbar-buttons" href="saved.html">Saved items</a>
<a class="navbar-buttons" href="comments.html">Comments</a>
</div>
<a name="top"></a>
</header>
<div class="main-container">
<div class="main-container-heading">
<h1>Saved Items</h1>
</div>
<table id="saved-items-table">
<!-- Saved items put here with script.js -->
</table>
</div>
<footer class="main-footer">
<a href="#top" class="back-to-top-btn">Back to top</a>
</footer>
</body>
</html>