-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.html
71 lines (68 loc) · 1.97 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
<!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="This is the checkout page" />
<link href="/css/styles.css" rel="stylesheet" />
<title>Rainydays | Checkout</title>
</head>
<body>
<header>
<div class="wrapper">
<div>
<a href="/index.html">Home</a>
</div>
<div>
<a href="/browse.html">Browse collection</a>
</div>
</div>
<div>
<a href="/cart.html"
><img class="cart" src="/images/cart.png" alt="cart icon" />
</a>
</div>
</header>
<main>
<div class="biglogodiv">
<a href="/index.html"
><img
src="/images/RainyDays_Logo-white.png"
alt="White logo of Rainydays"
class="logobigwhite"
/></a>
</div>
<div class="order-summary">
<div class="checkout-redline">
<img src="/assets/RainyDays_Jacket3.png" alt="jacket redline" />
</div>
<div class="order-text">
<h1>Order summary:</h1>
<p>___</p>
<p>x1 Redline jacket</p>
<p>Total to pay:</p>
</div>
<div class="checkout-buttons">
<a href="/checkoutsuccessful.html"><button>Pay €18.98</button></a>
<a href="/browse.html"><button>Shop more</button></a>
</div>
</div>
</main>
<footer>
<div class="wrapper">
<div><a href="/about.html">About</a></div>
<div><a href="/contact.html">Contact</a></div>
</div>
<div>
<a href="/index.html"
><img
class="logosmall"
src="/images/RainyDays_Logo-white-small.png"
alt="small rainydays logo"
/></a>
</div>
</footer>
<div class="copyright">Copyright Rainydays LLC ©</div>
</body>
</html>