-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
127 lines (119 loc) · 5.55 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
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="imges/Logo artists/loco V3.jpg">
<title>Checkout</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- NAVIGATION NAVBAR -->
<header>
<div class="container-hd">
<a href="index.html" class="logo-header">
<img src="imges/Logo_artists/loco V3-P.png" alt="Artistscoffee"></a>
<ul class="nav-header">
<li><a href="index.html">Home</a></li>
<li><a href="product.html">Product</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div id="input-wrapper">
<input class="Search-Nav" id="input" type="text" placeholder="Search">
<img class="search-icon" src="imges/search-svgrepo-com.svg" alt="Search">
</div>
<div class="shopping">
<img src="imges/shopping-cart-svgrepo-com.svg" alt="shopping">
<span class="quantity">0</span>
</div>
</div>
</header>
<main>
<div class="container-checkout">
<div class="checkoutLayout">
<div class="returnCart">
<a href="product.html" style="color: rgb(251, 255, 0); text-decoration: none; cursor: pointer; font-size: 1.1rem;">Keep Shopping</a>
<h1 style="color: white;">Shopping Cart</h1>
<ul class="listCard"></ul>
</div>
<div class="right">
<h1>CHECKOUT</h1>
<br>
<div class="form">
<div class="group">
<label for="">Full name</label>
<input type="text" placeholder="Full name" name="" id="">
</div>
<div class="group">
<label for="">Phone Number</label>
<input type="text" placeholder="Phone Number" name="" id="">
</div>
<div class="group">
<label for="">Address</label>
<input type="text" placeholder="Address" name="" id="">
</div>
<div class="group">
<label for="">County</label>
<select name="" id="">
<option value="">Choose..</option>
<option value="TH">Thailand</option>
<option value="TH">Thailand</option>
<option value="TH">Thailand</option>
</select>
</div>
<div class="group">
<label for="">City</label>
<select name="" id="">
<option value="">Choose..</option>
<option value="khonkaen">Khonkaen</option>
<option value="Udon">Udon</option>
<option value="Ubon">Ubon</option>
</select>
</div>
</div>
<div class="return">
<div class="row">
<div><p>Total quantity</p></div>
<div class="Quantity">3</div>
</div>
<div class="row">
<div><p>Total Price</p></div>
<div class="total">10</div>
</div>
</div>
<h3 class="payment-title">Payment with</h3>
<button class="buttonCheckout" style="background-color: yellow;">
<img src="imges/paypal-svgrepo1-com.svg" alt="">Paypal
</button>
<div class="separator-payment">
<span class="payment-text">Or</span>
</div>
<button class="buttonCheckout">
<img src="imges/credit-card-svgrepo1-com.svg" alt="">Credit Card
</button>
</div>
</div>
</div>
<!-- This is a scenery contant -->
<div class="Content-scenery">
<h2 class="scenery-title fronblack">Thank You for Buying Coffee Online</h2>
<p>We appreciate your purchase and hope you enjoy your freshly brewed coffee. Your support means a lot to us!</p>
</div>
</main>
<footer>
<div class="footer-xy">
<a href="/" class="footer-a">
<img src="imges/Logo_artists/loco V3-P.png" alt="Artistscoffee" loading="lazy">
</a>
<span class="">© 2024 Company, Inc</span>
</div>
<ul class="footer-social">
<li class=""><a class="" href="#"><img src="imges/facebook-1-svgrepo-com.svg" width="30" height="30" alt="" loading="lazy">
<li class=""><a class="" href="#"><img src="imges/instagram-svgrepo-com.svg" width="30" height="30" alt="" loading="lazy">
<li class=""><a class="" href="#"><img src="imges/line-svgrepo-com.svg" width="30" height="30" alt="" loading="lazy">
</ul>
</footer>
<script src="checkout.js"></script>
</body>
</html>