-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
143 lines (141 loc) · 5.23 KB
/
cart.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
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
134
135
136
137
138
139
140
141
142
143
<!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="Square Eyes - Your cart with products.">
<meta name="keywords" content="movies, movies online, big collection, buy movies, rent movies, high quality">
<meta name="author" content="Alexander Weidemann">
<link href="/css/style.css" rel="stylesheet">
<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=Inter:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/c7b67ab2c9.js" crossorigin="anonymous"></script>
<title>Square Eyes | Checkout</title>
</head>
<body>
<header>
<div class="nav-position">
<a href="index.html" class="logo"><img src="images/Logo.png" alt="Square Eyes logo"></a>
<nav>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="movies.html">Movies</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<a href="cart.html"><img src="images/cart.png" class="cart" alt="Shopping cart"></a>
</div>
</header>
<main>
<h1 class="page_h1-title">Checkout</h1>
<section class="checkout-divide">
<div class="info-wrapper">
<form>
<h2>Billing details</h2>
<hr>
<div class="input-info">
<div class="input-area">
<label for="firstname">First name</label>
<input type="text" placeholder="First name" id="firstname">
</div>
<div class="input-area">
<label for="lastname">Last name</label>
<input type="text" placeholder="Last name" id="lastname">
</div>
</div>
<div class="input-info">
<div class="input-area">
<label for="email">Email</label>
<input type="email" placeholder="Email" id="email">
</div>
</div>
<div class="input-info">
<div class="input-area">
<label for="country">Country</label>
<input type="text" placeholder="Country" id="country">
</div>
</div>
<div class="input-info">
<div class="input-area">
<label for="state">State/County</label>
<input type="text" placeholder="State/County" id="state">
</div>
<div class="input-area">
<label for="zip">Zip/Postal code</label>
<input type="text" placeholder="Zip/Postal code" id="zip">
</div>
</div>
<h2>Payment Method</h2>
<hr>
<div class="input-info">
<div class="input-area">
<label for="card">Card number</label>
<input type="text" placeholder="Card number" id="card">
</div>
</div>
<div class="input-info">
<div class="input-area">
<label for="date">Date</label>
<input type="text" placeholder="Date" class="tiny-info" id="date">
</div>
<div class="input-area">
<label for="year">Year</label>
<input type="text" placeholder="Year" class="tiny-info" id="year">
</div>
<div class="input-area">
<label for="cvc">cvc</label>
<input type="text" placeholder="cvc" class="tiny-info" id="cvc">
</div>
</div>
<a href="checkout-success.html" class="cta cta-pay">Pay now</a>
</form>
</div>
<div class="cart-items">
<h2> Cart</h2>
<hr>
<div class="cart_item-position">
<div class=" item-cart">
<img src="/images/thor-cart.png" alt="Product image of Thor Love and Thunder">
</div>
<div class="disc-thor">
<h3>Thor love and thunder</h3>
<p>Digital purchase</p>
<p class="product-price">15$</p>
</div>
</div>
<hr>
<div class="cart_item-position">
<div class=" item-cart">
<img src="/images/jurassic-cart.png" alt="Product image of Jurassic World Dominion">
</div>
<div class="disc-thor">
<h3>Jurassic World: Dominion</h3>
<p>Rental 72h</p>
<p class="product-price">5$</p>
</div>
</div>
<hr>
<div class="product-total">
<h4>Total</h4>
<h4>20$</h4>
</div>
</div>
</section>
</main>
<footer>
<div class="social-position">
<p class="copy-2022">© 2022 Square Eyes</p>
<nav>
<ul class="nav-list">
<li><a href="https://www.facebook.com/" class="fa-brands fa-facebook"><span>Facebook</span></a></li>
<li><a href="https://www.instagram.com/" class="fa-brands fa-instagram"><span>Instagram</span></a></li>
<li><a href="https://twitter.com/" class="fa-brands fa-twitter"><span>Twitter</span></a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>