-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
126 lines (126 loc) · 5.5 KB
/
checkout.html
File metadata and controls
126 lines (126 loc) · 5.5 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
<!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">
<meta name="description" content="Checkout page for your jacket from Rainydays.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/b318972c4d.js" crossorigin="anonymous"></script>
<title> Rainydays | Checkout page</title>
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<header>
<div class="header-container">
<a class="logo-header" href="index.html">
<figure style="max-width: 100px;margin:0px;">
<img class="logo-image" src="/images/RainyDays_Logo.png" alt="green logo">
</figure>
</a>
<input type="text" placeholder="Search here..." class="search">
<div class="header-icons">
<div>
<a href="#"><i class="fa-regular fa-heart"></i> Favourites</a>
</div>
<div>
<a href="#"><i class="fa-regular fa-user"></i> My pages</a>
</div>
<div>
<a href="#"><i class="fa-solid fa-cart-shopping"></i> Shopping Cart</a>
</div>
</div>
</div>
</header>
<label for="menu-checkbox" class="hamburger-icon"><i class="fas fa-bars"></i></label>
<input type="checkbox" id="menu-checkbox">
<nav class="nav-menu">
<ul>
<li><a href="jackets.html" class="active">All jacket news</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">Exploring</a></li>
<li><a href="#">Hiking</a></li>
<li><a href="#">Camping</a></li>
<li><a href="#">Canoeing</a></li>
<li><a href="#">Skiing</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="contact.html">Contact us</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="#">Sale</a></li>
</ul>
</nav>
<main>
<a href="jackets.html" class="back-shopping-cart"> Back/Women Jacket</a>
<section class="checkout-container">
<figure class="checkout-info-item">
<img class="checkout-images" src="images/Jacket_Women_Black.png" alt="Black waterproof jacket women">
<p class="checkout-product-text">Women's Waterproof Jacket</p>
<p class="checkout-product-text">Size: M</p>
<p class="product__price">Sum total: 1299,-</p>
</figure>
<div class="checkout-info-item">
<h1 class="shipping-text">1.Shipping</h1>
<form method="post">
<label for="email">Email*</label>
<input type="email" id="email" name="Email">
<label for="name">First name*</label>
<input type="name" id="name" name="Name">
<label for="name">Last name*</label>
<input type="name" id="name" name="Name">
<label for="address">Address*</label>
<input type="address" id="address" name="Address">
<label for="city">City*</label>
<input type="city" id="city" name="City">
<label for="number">Phone number*</label>
<input type="number" id="number" name="Phone number">
</form>
<div class="checkout-info-item">
<h2 class="payment-text">2.Payment</h2>
<form method="post">
<label for="card number">Card number*</label>
<input type="card number" id="card number" name="Card number">
<label for="personal number">Personal number(MM/YY*)</label>
<input type="personal number" id="personal number" name="Personal number">
<label for="security code">Security code(CVC*)</label>
<input type="security code" id="security code" name="Security code">
<label for="cardholder name">Cardholder name*</label>
<input type="cardholder name" id="cardholder name" name="Cardholder name">
<select id="select-payment" name="Select payment">
<option value="Visa">Visa</option>
<option value="Mastercard">Mastercard</option>
<option value="Paypal">PayPal</option>
</select>
</form>
<div class="product-confirm">
<a href="success.html" class="cta-large">Confirm payment</a>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-container">
<div class="help-container">
<h3>Help</h3>
<ul>
<li>Customer service</li>
<li>Return</li>
<li>Shipping & delivery</li>
<li>Privacy policy</li>
</ul>
</div>
<div class="contact-container">
<h3>Contact us</h3>
<ul>
<li><a href="about.html" class="footer-about">About us</a></li>
<li><a href="contact.html" class="footer-contact">Contact us</a></li>
<li>Work with us</li>
</ul>
</div>
</div>
</footer>
</body>
</html>