-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (66 loc) · 2.23 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Shopping Cart</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/custom.css"/>
</head>
<body>
<nav class="navbar">
<div class="container">
<a class="navbar-brand" href="#">Surprise as a Service [SaaS] </a>
<div class="navbar-right">
<div class="container minicart"></div>
</div>
</div>
</nav>
<div class="container-fluid breadcrumbBox text-center">
<ol class="breadcrumb">
<li><a href="#">Review</a></li>
<li class="active"><a href="#">Order</a></li>
<li><a href="#">Payment</a></li>
</ol>
</div>
<div class="container text-center">
<div class="col-md-5 col-sm-12">
<div class="bigcart"></div>
<h1>Our Shopping Cart</h1>
<p>
</p>
</div>
<div class="col-md-7 col-sm-12 text-left">
<ul>
<li class="row list-inline columnCaptions">
<span>QTY</span>
<span>ITEM</span>
<span>Price</span>
</li>
<li class="row">
<span class="quantity">1</span>
<span class="itemName">Willy Wonka Airline Ticket</span>
<span class="popbtn"><a class="arrow"></a></span>
<span class="price">£1000.00</span>
</li>
<li class="row totals">
<span class="itemName">Total:</span>
<span class="price">£1000.00</span>
<span class="order"> <a class="text-center" href="http://localhost:4000/api.php">AfterPay</a></span>
<span class="order"> <a class="text-center" href="holder.html">MasterCard</a></span>
</li>
</ul>
</div>
</div>
<!-- The popover content -->
<div id="popover" style="display: none">
<a href="#"><span class="glyphicon glyphicon-pencil"></span></a>
<a href="#"><span class="glyphicon glyphicon-remove"></span></a>
</div>
<!-- JavaScript includes -->
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/customjs.js"></script>
</body>
</html>