-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkout-success.html
51 lines (51 loc) · 2.21 KB
/
checkout-success.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
<!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 - Purchase successfull">
<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 success</title>
</head>
<body>
<header>
<div class="nav-position">
<a href="index.html" class="logo"><img src="images/Logo.png" alt="Big check mark icon"></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" class="active">Contact</a></li>
</ul>
</nav>
<a href="cart.html"><img src="images/cart.png" class="cart" alt="Shopping cart"></a>
</div>
</header>
<main class="checkout-success_main">
<img src="/images/icon-check.png" alt="Big check mark" class="icon-check">
<h1>Thank you for your purchase!</h1>
<p>You will soon recive a Email with your purchase and receipt</p>
<a href="movies.html" class="cta cta-rent cta-continue">Continue shopping</a>
</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>