-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcart.html
67 lines (65 loc) · 2.73 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Cart</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" type="text/css">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<script type="text/javascript" src="bootstrap/js/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css" type="text/css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">The Urban Kitchen | Home</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="cart.html"><span class="glyphicon glyphicon-shopping-cart"></span> Cart</a></li>
<li><a href="settings.html"><span class="glyphicon glyphicon-user"></span> Settings</a></li>
<li><a href="login.html"><span class="glyphicon glyphicon-log-out"></span> Logout</a></li>
</ul>
</div>
</div>
</nav><br><br><br><br>
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6">
<table class="table table-striped">
<tbody>
<tr>
<th>Item Name</th>
<th>Quantity</th>
<th>Price</th>
<th></th>
</tr>
<tr></tr>
<tr>
<td></td>
<td>Total</td>
<td>₹0.00</td>
<td><a href="success.html" class="btn btn-primary">Confirm Order</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<footer style="position: absolute;">
<div class="container">
<center>
Copyright © The Urban Kitchen. All Rights
Reserved | Contact Us: +91 90000 00000
</center>
</div>
</footer>
</body>
</html>