-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
122 lines (99 loc) · 3.63 KB
/
checkout.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
<!DOCTYPE html>
<html lang="en">
<style>
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shope Line</title>
<script src="https://kit.fontawesome.com/21aac9c2ec.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.2.1/axios.min.js" integrity="sha512-zJYu9ICC+mWF3+dJ4QC34N9RA0OVS1XtPbnf6oXlvGrLGNB8egsEzu/5wgG90I61hOOKvcywoLzwNmPqGAdATA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./checkout.css">
<link rel="stylesheet" href="./product.css">
<link rel="stylesheet" media="screen and (min-width: 20px) and (max-width: 678px)" href="./producMobt.css">
</head>
<body>
<section class="headre">
<div id="header">
<nav>
<div class="logo">
<a href="./index.html">
<h4>SHOP<span class="line-text">LINE</span></h4>
</a>
</div>
<div class="categories">
<a href="./index.html#cloaths"><h5>CLOATHING</h5> </a>
<a href="./index.html#accessories"> <h5>ACCESSORIES</h5></a>
</div>
<!-- <div class="search-bar">
<form action="">
<input type="text" placeholder="Search for products...">
</form>
</div> -->
<a href="./checkout.html" class="cart-user">
<p class="cartNum">0</p>
<i class="fa-solid cart-icon fa-cart-shopping"></i>
</a>
<div class="user-imagediv">
<img class="user-image" src="./images/user-ameer.jpg" alt="user-photo">
</div>
</div>
</nav>
</section>
<section class="alert hide">
</section>
<div id="checkout-container">
<h1>Checkout</h1>
<h4></h4>
<div class="cart-products-and-price">
<div class="products">
<div class="counts">
</div>
</div>
<div class="price">
<div class="totalPriceContainer">
<div class="pricedata">
<h2>Total Price :</h2>
<h3></h3>
</div>
<a href="./ordered.html" class="orderBtn">Place Order</a>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footerview">
<ul>
<li>ONLINE STORE</li>
<li>MEN CLOTHING</li>
<li>MEN CLOTHING</li>
<li>MEN ACCESSORIES</li>
<li>WOMEN ACCESSORIES</li>
</ul>
<ul>
<li>HELPFUL LINKS</li>
<li>HOME</li>
<li>ABOUT</li>
<li>CONTACTS</li>
</ul>
<ul>
<li>PATNERS</li>
<li>PETER ENGLEND</li>
<li>UCB</li>
<li>BOAT LIFE-STYLE</li>
<li>UCB</li>
</ul>
<ul>
<li>ADRESS</li>
<li>HiLite Mall</li>
<li>CALICUT, KERALA</li>
<li>676551</li>
</ul>
</div>
</div>
<script src="./product.js"></script>
<script src="./checkout.js"></script>
</body>
</html>