-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththankyou.html
79 lines (79 loc) · 3.23 KB
/
thankyou.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap" rel="stylesheet">
<title>Shopping App</title>
<script src="https://kit.fontawesome.com/35c398e458.js"></script>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<link rel="stylesheet" href="/base.css" />
<link rel="stylesheet" href="/thankyou.css" />
</head>
<body>
<header>
<nav id="topbar">
<div id="left-menu">
<div id="logo"><a href="/index.html"><span>Shop</span>lane</a></div>
<a href="./index.html#clothing-section">Clothing</a>
<a href="./index.html#accessory-section">Accessories</a>
</div>
<div id="search-wrapper">
<i class="fas fa-search"></i>
<input id="search-box" type="text" name="search" placeholder="Search for Clothing and Accessories"/>
</div>
<div id="right-menu">
<div id="cart-wrapper">
<p id="cart-count">0</p>
<a href="/"><i class="fas fa-shopping-cart"></i></a>
</div>
<img src="/assets/avatar.jpg" />
</div>
</nav>
</header>
<main>
<div id="main-wrapper">
<div id="tick-wrapper">
<img src="./assets/white-tick.png" />
</div>
<h1 class="main-heading">Order Placed Successfully!!</h1>
<p class="section-heading">We have sent you an email with the order details</p>
</div>
</main>
<img id="edyoda-projects-logo" src="https://i.imgur.com/OKAY6Fl.png" alt="EdYoda Projects Logo" />
<footer>
<div>
<p class="footer-heading">Online Store</p>
<a href="/" class="footer-link">Men Clothing</a>
<a href="/" class="footer-link">Women Clothing</a>
<a href="/" class="footer-link">Men Accessories</a>
<a href="/" class="footer-link">Women Accessories</a>
</div>
<div>
<p class="footer-heading">Helpful Links</p>
<a href="/" class="footer-link">Home</a>
<a href="/" class="footer-link">About</a>
<a href="/" class="footer-link">Contact</a>
</div>
<div>
<p class="footer-heading">Partners</p>
<a href="/" class="footer-link">Zara</a>
<a href="/" class="footer-link">Pantaloons</a>
<a href="/" class="footer-link">Levis</a>
<a href="/" class="footer-link">UCB</a>
<a href="/" class="footer-link">+ Many More</a>
</div>
<div>
<p class="footer-heading">Address</p>
<p href="/" class="footer-link">Building 101</p>
<p href="/" class="footer-link">Central Avenue</p>
<p href="/" class="footer-link">LA - 902722</p>
<p href="/" class="footer-link">United States</p>
</div>
</footer>
</body>
</html>