-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
161 lines (133 loc) · 5.49 KB
/
cart.html
File metadata and controls
161 lines (133 loc) · 5.49 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
<title>Cart</title>
</head>
<body>
<header class="header">
<div class="container header__wrap">
<div class="header__left">
<a href="index.html" class="header__logo">
<img src="img/logo.svg" alt="">
</a>
<img src="img/search.svg" alt="search">
</div>
<div class="header__right">
<nav><img class="header__item" src="img/menu.svg" alt="menu"></nav>
<a href="#">
<img class="header__item" src="img/profile.svg" alt="profile">
</a>
<div class="shop">
<a href="#">
<img class="header__shop" src="img/shop.svg" alt="shop">
<span class="count">5</span>
</a>
</div>
</div>
</div>
</header>
<main>
<header class="header__menu">
<div class="container header__wrap">
<div>
<h2>SHOPPING CART</h2>
</div>
</div>
</header>
<div class="container cart">
<section class="cart__box">
<div class="product">
<img src="./img/man_catalog_3.jpg" alt="cards" class="cards__img">
<div class="characteristic">
<h3>MANGO PEOPLE T-SHIRT</h3>
<ul>
<li>Price: <span>$300</span> </li>
<li>Color: Red </li>
<li>Size: Xl </li>
<li>Quantity: <button>2</button></li>
</ul>
</div>
</div>
<div class="product">
<img src="./img/man_catalog_2.jpg" alt="cards" class="cards__img">
<div class="characteristic">
<h3>MANGO PEOPLE T-SHIRT</h3>
<ul>
<li>Price: <span>$300</span> </li>
<li>Color: Red </li>
<li>Size: Xl </li>
<li>Quantity: <button>2</button></li>
</ul>
</div>
</div>
<div class="btn">
<button>CLEAR SHOPPING CART</button>
<button>CONTINUE SHOPPING</button>
</div>
</section>
<section class="cart__order">
<div class="adress">
<legend>SHIPPING ADRESS</legend>
<input type="text" minlength="2" placeholder="Bangladesh"><br>
<input type="text" minlength="2" placeholder="State"><br>
<input type="text" minlength="2" placeholder="Postcode / Zip"><br>
<button>GET A QUOTE</button>
</div>
<div class="checkout">
<div class="total">
<h4>SUB TOTAL <span>$900</span></h4>
<h3>GRAND TOTAL <span>$900</span></h3>
</div>
<button>PROCEED TO CHECKOUT</button>
</div>
</section>
</div>
</main>
<footer class="footer">
<section class="footer__subscribe">
<div class="footer__subscribe__container">
<article class="feedback">
<img src="./img/lady__footer.png" alt="avatar" class="avatar">
<blockquote>
“Vestibulum quis porttitor dui! Quisque viverra nunc mi, <i>a
pulvinar purus condimentum</i>“
</blockquote>
</article>
<article class="subsribe__form">
<h3>SUBSCRIBE</h3>
<p>FOR OUR NEWLETTER AND PROMOTION</p>
</h3>
<form action="#">
<input class="subscribe-field" type="email" placeholder="Enter Your Email" required>
<input class="subscribe-btn" type="submit" value="Subscribe">
</form>
</article>
</div>
</section>
<section class="container footer__contacts">
<div class="brand">
<p> © 2021 Brand All Rights Reserved.</p>
</div>
<div class="network">
<span>
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook fa-2x"></i></a>
</span>
<span>
<a href="https://www.instagram.com/" target="_blank"><i class="fa fa-instagram fa-2x"></i></a>
</span>
<span>
<a href="https://www.pinterest.ru/" target="_blank"><i class="fa fa-pinterest fa-2x"></i></a>
</span>
<span>
<a href="https://twitter.com/" target="_blank"><i class="fa fa-twitter fa-2x"></i></a>
</span>
</div>
</section>
</footer>
</body>
</html>