-
Notifications
You must be signed in to change notification settings - Fork 0
/
SavedItems.html
34 lines (29 loc) · 1.15 KB
/
SavedItems.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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>Save for later</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link href="https://fonts.googleapis.com/css2?family=Carlito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./Capstone.css">
</head>
<body>
<nav class = "navbar">
<a href="Index.html">Home</a>
<a href="AboutUs.html">About Us</a>
<a href="Contact.html">Contact Details</a>
<a href="SaveForLater.html">Blog/Content</a>
<a href="SavedItems.html" class="active">Saved Items</a>
</nav>
<section>
<h1>Your Saved Items</h1>
<div id = "savedItems"></div>
</section>
<script src = "main.js"></script>
</body>
</html>