-
Notifications
You must be signed in to change notification settings - Fork 0
/
success.html
143 lines (134 loc) · 5.06 KB
/
success.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!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>
<title>Sucess</title>
<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>
<style>
.card{
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: all 0.5s ease;
margin-top: 10px;
margin-left: 75px;
}
hr{
color: black;
background-color: black;
}
ul{
text-align: center;
font-size: 15px;
}
.btn{
margin: 30px 10px;
width: 150px;
padding: 10px;
border-radius: 20px;
}
.btn-second{
background-color: darkorange;
color: #fff;
}
.btn-first{
background-color: darkorange;
color: #fff;
}
p{
font-size: 20px;
text-align: center;
}
h3{
text-align: center;
}
footer{
padding: 10px 0;
background-color: #101010;
color:#9d9d9d;
bottom: 0;
width: 100%;
// position: absolute;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand">Lifestyle Store</a>
</div>
<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"> Setting</span></a></li>
<li><a href="index.html"><span class="glyphicon glyphicon-log-in"> Logout</span></a>
</ul>
</nav>
<div class="container">
<div class="jumbotron" style="margin-top:75px;">
<p> Your order is confirmed. Thank you for shopping
with us.<a href="product.html"> Click here</a> to purchase any other item.</p>
</div>
</div>
<!--- About -->
<div class="container" id="About-section">
<div class="row">
<div class="col-md-4 col-sm-6">
<div class="thumbnail">
<img src="g-1.jpg">
<div class="caption">
<h3>Payment</h3><hr>
<p>Safer and faster payment</p><hr>
<ul>
<li>Cash on delivery</li>
<li>Credit/Debit cards accepted</li>
<li>Net banking available</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="thumbnail">
<img src="g-2.jpg">
<div class="caption">
<h3>Delivery</h3><hr>
<p>Safer and Quick delivery.</p><hr>
<ul>
<li>Sanitized delivery</li>
<li>Quick delivery</li>
<li>0 delivery charges</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="thumbnail">
<img src="g-3.jpg">
<div class="caption">
<h3>Products</h3><hr>
<p>Safe and low vunerability</p><hr>
<ul>
<li>Branded products</li>
<li>Return policy within 15 days</li>
<li>No cancellation charges.</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer>
<center>
<div class="container">
<p>Copyright © Lifestyle Store. All Rights Reserved | Bootstrap and CSS</p>
</div>
</center>
</footer>
</body>
</html>