-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
39 lines (35 loc) · 1.23 KB
/
cart.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
<html>
<head>
<title> Bookit </title>
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
<meta http-equiv="Content-type" content="application/xhtml+xml;charset=UTF-8"/>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/cart.js" type="text/javascript"> </script>
<link rel="stylesheet" type="text/css" href="styles/main.css" />
<link rel="stylesheet" type="text/css" href="styles/cart.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="container">
<header>
<div id="top-header">
<div id="search-box">
<button type="submit"><i class="fa fa-search"></i></button>
<input type="text" placeholder="Search Book" disabled/>
</div>
<div id="title"><a href="../estore">bookit</a></div>
<div id="cart-symbol">
<a href="cart.html"><i class="fa fa-shopping-cart"></i><div id="cart-amount">0</div></a>
</div>
</div>
</header>
<body>
<div id="content-container">
<h2>Shopping Cart</h2>
<div id="cart-container"></div>
</div>
</body>
</div>
</body>
</html>