forked from CodnanBaig/green-paradise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
thankyou.html
122 lines (121 loc) · 4.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/Swiper/10.1.0/swiper-bundle.min.js"
integrity="sha512-4Ooh3fl4STrmn95ZbS/J6l8csp/FvSKPaeDAH/IaPQGJIx9lmpuxXZTCYKR2W5+Bt7i74exPvAT2PsWnac+sow=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<link
href="https://api.fontshare.com/v2/css?f[]=clash-display@200,400,700,500,600,1,300&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="GP.png" type="image/x-icon">
<link rel="stylesheet" href="./styles/index.css" />
<link rel="stylesheet" href="./styles/nav.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link rel="stylesheet" href="./styles/popularProducts.css" />
<link rel="stylesheet" href="./styles/checkout.css" />
<title>Green Paradise | Thank You</title>
</head>
<body>
<div class="background">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<nav class="navbar sticky-top navbar-expand-lg bg-light">
<div class="container">
<a class="navbar-brand" href="index.html">Green paradise</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"
><i class="fa-solid fa-bars"></i
></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="allProducts.html"
>Catalog</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html#about">About</a>
</li>
<li class="nav-item">
<a
class="nav-link"
href="index.html#delivery"
tabindex="-1"
aria-disabled="true"
>Delivery & Payment</a
>
</li>
</ul>
</div>
</div>
</nav>
<section id="top">
<div class="container-fluid p-0">
<div class="row g-0">
<div class="col-lg-6 col-md-6 col-sm-12">
<div
class="hero-info d-flex flex-column justify-content-center align-items-start"
>
<h1 class="heading">Thank You For Shopping With Us</h1>
<br />
<button class="catalog-btn btn mb-3">
<a href="allProducts.html" style="color: white"> Catalog</a>
</button>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 p-0">
<img
src="https://images.pexels.com/photos/4065156/pexels-photo-4065156.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2"
class="img-fluid hero"
alt=""
/>
</div>
</div>
</div>
</section>
<footer class="footer mt-auto py-3 bg-light"></footer>
</body>
</html>
<script type="module">
import footer from "./components/footer.js";
document.querySelector("footer").innerHTML = footer();
</script>