-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorderconfirm.html
88 lines (84 loc) · 3.73 KB
/
orderconfirm.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>SHOPLANE - A Place For Shopping</title>
<link rel="stylesheet" href="./style.css" />
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet"/>
<link rel="stylesheet" type="text/css" href="./slick-1.8.1/slick/slick.css" />
<link rel="stylesheet" type="text/css" href="./slick-1.8.1/slick/slick-theme.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer">
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous" ></script>
</head>
<body>
<div id="top-bar">
<div class="logo">
<a href="./index.html"
><h4><span>SHOP</span>LANE</h4></a
>
</div>
<ul class="nav-links">
<li><a href="./index.html">Home</a></li>
<li><a href="/index.html#clothing">Clothings</a></li>
<li><a href="/index.html#accessories">Accessories</a></li>
</ul>
<div class="icons">
<i class="fa fa-search"></i>
<div class="cart" id="cartIcon">
<a href="./checkout.html">
<i class="fa fa-shopping-cart">
<span id="cart-count"></span>
</i>
</a>
</div>
<div class="profile">
<i class="fa-solid fa-user"></i>
</div>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</div>
</div>
<div class="order-confirm">
<img src="./img 5.png" alt="order-confirm" />
<h3>Order Placed Successfully!!</h3>
<p>We have sent you an email with the order details</p>
</div>
<footer><div>
<p class = "footer-heading">Online Store</p>
<a href="#clothes-card" class="footer-link">Men Clothing</a>
<a href="#clothes-card" class="footer-link">Women Clothing</a>
<a href="#accesorie-head" class="footer-link">Men Accessories</a>
<a href="#accesorie-head" class="footer-link">Women Accessories</a>
</div>
<div>
<p class = "footer-heading">Helpful Links</p>
<a href="#clothes-card" class="footer-link">Home</a>
<a href="#clothes-card" class="footer-link">About</a>
<a href="#accesorie-head" class="footer-link">Contact</a>
</div>
<div>
<p class = "footer-heading">Partners</p>
<a href="#clothes-card" class="footer-link">Zara</a>
<a href="#clothes-card" class="footer-link">Pantaloons</a>
<a href="#accesorie-head" class="footer-link">Levis</a>
<a href="#accesorie-head" class="footer-link">UCB</a>
<a href="#accesorie-head" class="footer-link">+ Many More</a>
</div>
<div>
<p class = "footer-heading">Address</p>
<a href="#clothes-card" class="footer-link">Building 101</a>
<a href="#clothes-card" class="footer-link">Central Avenue</a>
<a href="#accesorie-head" class="footer-link">LA - 902722</a>
<a href="#accesorie-head" class="footer-link">United States</a>
</div>
</footer>
<script type="text/javascript" src="./slick-1.8.1/slick/slick.min.js"></script>
<script src="./index.js"></script>
</body>
</html>