-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout-4.html
86 lines (85 loc) · 3.62 KB
/
checkout-4.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://use.typekit.net/gzy8fgh.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap"/>
<link rel="stylesheet" href="CSS/index.css" />
<link rel="stylesheet" href="CSS/checkout.css" />
<title>Shipping | Rainy Days</title>
<meta name="description" content="Shopping cart. Confirm shipping address - Rainy Days"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<!-------------------------------------- header --------------------------------------------->
<body>
<div class="top-line"></div>
<div class="body">
<header>
<a href="index.html">
<img class="logo" src="images/RainyDays_Logo.png" alt="rainy days logo"/>
</a>
<div class="topnav">
<div class="favorites item"><img src="images/icons/like.svg" alt="favorites"/></div>
<div class="profile item"><img src="images/icons/profile.svg" alt="profile"/></div>
<div class="cart item"><a href="checkout.html"><img src="images/icons/cart.svg" alt="shopping cart"></a></div>
<div class="search item"><img src="images/icons/search.svg" alt="search"/></div>
</div>
</header>
<!---------------------------- main content --------------------------------------->
<main>
<div class="jacket-container">
<div class="top-bar">
<h1 class="h1-about">Success!</h1>
<img class="progress-bar" src="images/components/checkout-4.svg" alt="step 2: enter shipping address"/>
</div>
<div class="line"></div>
<div class="info-line">
<p>Product Details</p>
<p class="price">Price</p>
<p>Quantity</p>
<p>Total Price</p>
</div>
<div class="cart-line"></div>
<div class="jacket-specs">
<img class="thumb-2" src="images/jacket_1-1.jpg" alt="men's Forest Jacket"/>
<div>
<p><b>Forest Jacket</b></p>
<p>Size: M</p>
</div>
<p class="price">$54</p>
<img class="quantity" src="images/quantity.svg" />
<p>$54</p>
<div></div>
</div>
<div class="cart-line"></div>
<div class="jacket-specs">
<img class="thumb-2" src="images/jacket_2-1.jpg" alt="Men's Edge Jacket"/>
<div>
<p><b>Edge Jacket</b></p>
<p>Size: M</p>
</div>
<p class="price">$58</p>
<img class="quantity" src="images/quantity.svg" />
<p>$58</p>
<div></div>
</div>
<div class="cart-line"></div>
<div class="back-continue confirmation">
<a class="back" href="index.html"><b><--Back to Shopping</b></a>
</div>
</div>
<section class="login">
<h5>Order no #23950</h5>
<h3>Thanks for your order!</h3>
<p>Your new jacket will be with you very soon. We’ll send you an e-mail when it’s on it’s way!</p>
<p>You can also log into your account to get updates and manage your order.</p>
<form>
<h4>Want to get discounts, news and more straight to your inbox?</h4>
<label for="email">enter your e-mail</label>
<input type="email" name="email">
<input type="submit" class="btn-large loginBtn" value="sign up!" id="signupBtn">
</form>
</section>
</main>
</div>
</body>
</html>