-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckout.html
More file actions
133 lines (117 loc) · 4.18 KB
/
checkout.html
File metadata and controls
133 lines (117 loc) · 4.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Billing information for buying chosen product">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/checkout.css">
<link rel="icon" href="images/rainy_days_upper_half.png">
<title>Billing Information</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<input type="checkbox" id="menu-checkbox" />
<label for="menu-checkbox" class="hamburger-icon"><i class="fa-solid fa-bars"></i></label>
<nav class="genders">
<a href="store.html">Men</a>
<a href="store.html">Women</a>
<a href="store.html">Kids</a>
</nav>
<a href="index.html">
<img class="logo" src="images/rainy_days_upper_half.png" alt="top logo">
</a>
<a class="button" href="checkout.html">Checkout</a>
</header>
<main>
<hr>
<section class="item-container">
<div class="buy">
<img class="rain-jacket" src="images/RainyDays_Jacket1.jpg" alt="rain-jacket">
<div class="description">
<h1>Rainy Days</h1>
<p>UNISEX - Rain Jacket</p>
<div class="hr2">
<hr>
</div>
<div class="product-info">
<p class="product-amount">Product Total :</p>
<p class="product-total">kr 2000,00</p>
<p class="shipping-fee">Shipping Fee :</p>
<p class="shipping-fee-total">kr 70,00</p>
<p class="total">Total :</p>
<p class="total-amount">kr 2070,00</p>
</div>
</div>
</div>
</section>
<div class="container">
<form action="#">
<div class="row">
<div class="col">
<h3 class="title">Billing Address</h3>
<div class="inputBox">
<span>Full name :</span>
<input type="text" placeholder="example - Adlan Ilyasov">
</div>
<div class="inputBox">
<span>Email Address :</span>
<input type="text" placeholder="Example - Adlanilyasov@example.com">
</div>
<div class="inputBox">
<span>Phone Number :</span>
<input type="text" placeholder="example - +47 300 77 888">
</div>
<div class="inputBox">
<span>Home Address :</span>
<input type="text" placeholder="example - example - Myhouse 44">
</div>
<div class="inputBox">
<span>Zip code :</span>
<input type="text" placeholder="example - 4250 ">
</div>
<div class="inputBox">
<span>City :</span>
<input type="text" placeholder="example - Lazytown">
</div>
</div>
</div>
</form>
</div>
<a class="button2" href="success.html">Continue</a>
</main>
<footer>
<div class="footerContainer">
<div class="socialIcons">
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
<div class="footerNav">
<h1>Help & Contact</h1>
<ul>
<li><a href="contact.html">Payment Issues</a></li>
<li><a href="contact.html">Order Delayed</a></li>
<li><a href="contact.html">Refund</a></li>
</ul>
</div>
<div class="questions">
<h1>Frequently asked questions</h1>
<ul>
<li>Can i check product availability or reserve items online?</li>
<li>What payment methods do you accept?</li>
<li>Do you offer curbisde pickup or delivery options?</li>
</ul>
</div>
<div class="about">
<a href="about.html">
<h2>About us</h2>
</a>
<img class="logo2" src="images/rainy_days_upper_half.png" alt="bottom logo">
</div>
</div>
</footer>
</body>
</html>