-
Notifications
You must be signed in to change notification settings - Fork 31
/
Cart.html
82 lines (76 loc) · 3.24 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Cart</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<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 href="index.html" class="navbar-brand">Lifestyle store</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">Cart</span></a></li>
<li><a href="settings.html"><span class="glyphicon glyphicon-user">Settings</span></a></li>
<li><a href="logout.html"><span class="glyphicon glyphicon-log-out">Logout</span></a></li>
</ul>
</div>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="table-responsive table-condensed table_style">
<table class="table table-bordered table-striped table-hover">
<tbody>
<tr>
<th>Item Number</th>
<th>Item Name</th>
<th>Price</th>
<th></th>
</tr>
<tr></tr>
<tr>
<td></td>
<td>Total</td>
<td>Rs.0</td>
<td><a href="success.html"><button class="btn btn-primary">Confirm
Order</button></a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="container">
<center>
Copyright © Lifestyle Store. All Rights Reserved and Contact Us: +91 90000 00000
</center>
</div>
</footer>
</body>
</html>