-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.html
45 lines (45 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width = device-width, initial-scale = 1">
<title>Success | Fashion Store</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div 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">Fashion 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"></span> Cart </a></li>
<li><a href = "settings.html"><span class = "glyphicon glyphicon-user"></span> Settings</a></li>
<li><a href = ""><span class = "glyphicon glyphicon-log-in"></span> Logout</a></li>
</ul>
</div>
</div>
</div>
<div class="container-fluid" id="content">
<div class="col-md-12">
<div class="jumbotron">
<h3 align="center">Your order is confirmed. Thank you for shopping with us.</h3><hr>
<p align="center">Click <a href="products.html">here</a> to purchase any other item.</p>
</div>
</div>
</div>
<footer>
<div class="container">
<center>
<p>Copyright © Fashion Store. All Rights Reserved | Contact Us: +91 9490342221</p>
</center>
</div>
</footer>
</body>
</html>