-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout.html
102 lines (90 loc) · 3.43 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
<!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="Rainydays Jakckets for supreme living">
<meta name="keywords" content="rainydays, jackets, strong, sustainable, adventure, limitless, comfy, solid, comfort zone, rainy, pushing">
<script
src="https://kit.fontawesome.com/cdbde72ef5.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="/css/styles.css" />
<title>Rainydays - Checkout</title>
<!-- Hotjar Tracking Code for https://snazzy-marzipan-23d5ad.netlify.app/ -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3284537,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
</head>
<body>
<header id="header">
<a href="index.html" class="rainydays"></a>
</header>
<nav class="browser-nav">
<ul>
<a href="index.html" class="nav menu1">Home</a>
<a href="jackets.html" class="nav menu current">Jackets</a>
<a href="about.html" class="nav menu1">About</a>
<a href="contact.html" class="nav menu1">Contact</a>
<a href="shopping-cart.html" class="nav menu1">Shopping Cart</a>
</ul>
</nav>
<main>
<!---navbar for mobile--->
<div class="hamburger">
<label for="hamburger-menu"><i class="fa-solid fa-bars fa-2x"></i></i></label>
<input type="checkbox" id="hamburger-menu" />
<nav class="mobile-menu">
<ul class="mobile-menu-content">
<a href="index.html">Home</a>
<a href="jackets.html">Jackets</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="shopping-cart.html">Shopping Cart</a>
</ul>
</nav>
</div>
<!---end of navbar for mobile-->
<section class="jacket-checkout">
<div class="jacketcheckout">
<img src="/images/products/RainyDays_Jacket1.png" alt="The Strong Jacket" class="jacketbuy"></img>
</div>
<div class="checktxt">
<h1>THE STRONG JACKET</h1>
<h2>Has been added to your cart</h2>
<p>Please fill out payment and shipping</p>
<div class="checklayout">
<div class="checkoutform">
<form action="action_page.php">
<label for="name"></label>
<input type="text" id="name" name="name" placeholder="Your name..">
<label for="street"></label>
<input type="text" id="email" name="street" placeholder="street..">
<label for="p.box"></label>
<input type="text" id="p.box" name="p.box" placeholder="p.box..">
<label for="cuntry"></label>
<input type="text" id="country" name="country" placeholder="country..">
<label for="pay"></label>
<select id="country" name="country">
<option value="Visa">Visa</option>
<option value="Mastercard">Mastercard</option>
<option value="PayPal">PayPal</option>
<option value="Monopolymoney">Monopolymoney</option>
</select>
<input type="submit" value="Submit">
</form>
</div>
</div>
</section>
</main>
<footer> © Copyright <a href="about.html" class="footermenu">About us</footer>
</body>
</html>