-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (89 loc) · 4.25 KB
/
index.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
<!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">
<title>Mazda CX-9 - Checkout</title>
<link rel="stylesheet" type="text/css" href="./assets/css/style.css" />
</head>
<body>
<div class="container">
<div class="wrapper">
<div class="checkout-image">
<div class="info">
<h2>GoCar</h2>
<h4>Mazda CX-9</h4>
<h1>$583.98</h1>
<p>
<span>4-day rental</span>
<img src="https://img.icons8.com/sf-regular/48/aaaaaa/forward.png" alt="Arrow" height="15px" width="15px" />
</p>
<img class="product-img" src="./assets/images/mazda-cx-9.png" height="200px" alt="Product-Image" />
</div>
<div class="footer">
<p>
<span>Powered by <b>Stripe</b></span>
<img src="https://img.icons8.com/external-dreamstale-lineal-dreamstale/32/000000/external-warning-ui-dreamstale-lineal-dreamstale.png" alt="Warning-icon" height="15px" width="15px" />
</p>
<select>
<option selected>English</option>
<option>French</option>
<option>Arabic</option>
</select>
</div>
</div>
<div class="checkout-text">
<div class="back-to-home">
<a href="">Back to GoCar</a>
<img src="https://img.icons8.com/sf-regular/48/aaaaaa/forward.png" alt="Arrow" height="15px" width="15px" />
<a href="">Payment</a>
</div>
<div class="pay-button">
<button>
<img src="https://img.icons8.com/ios-filled/50/FFFFFF/mac-os.png" alt="Apple-Pay" height="20px" width="20px" />
<span>Pay</span>
</button>
</div>
<div class="or-line">
<p>Or pay with card</p>
</div>
<div class="card-details">
<label>Card details</label>
<div class="card-number">
<input type="number" placeholder="4242 4242 4242 4242" />
<div>
<img src="https://img.icons8.com/color/48/000000/visa.png" height="20px" width="20px" />
<img src="https://img.icons8.com/color/48/000000/mastercard.png" height="20px" width="20px" />
<img src="https://img.icons8.com/color/48/000000/amex.png" height="20px" width="20px" />
</div>
</div>
<div class="card-info">
<div class="mm-yy">
<input type="number" placeholder="MM / YY" />
</div>
<div class="cvc">
<input type="number" placeholder="CVC" />
<img src="https://img.icons8.com/ios/50/000000/card-verification-value.png" height="20px" width="20px" />
</div>
</div>
</div>
<div class="owner-name">
<label>Owner name</label>
<input type="text" placeholder="John Doe" />
</div>
<div class="country-region">
<label>Country or region</label>
<select>
<option>United States</option>
<option>Morocco</option>
<option>China</option>
</select>
<input type="number" placeholder="Zip code" />
</div>
<button class="buy-button">Pay $583.98</button>
</div>
</div>
<h5>© <b>DevJam Challenges</b> - 2022 - Made with ❤️ by <a href="https://twitter.com/boularbahsmail" target="_blank">Ismailium</a></h5>
</body>
</html>