-
Notifications
You must be signed in to change notification settings - Fork 3
/
thankyou.html
61 lines (54 loc) · 2.47 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
<!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">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Spartan:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/donation.css">
<link rel="stylesheet" href="./css/thankyou.css">
<link rel="shortcut icon" href="/material/spark_icon.png" type="image/png">
<title>Thank You!</title>
</head>
<body>
<header>
<nav id="navbar">
<h1 class="headText"> <strong>The Sparks Foundation</strong></h1>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<ul class="navlinks">
<li><a class="links" href="./index.html"><strong>HOME</strong> </a></li>
<li><a class="links" href="./Donation.html" target="_blank"><strong>DONATE</strong></a></li>
<li><a class="links" href="./about.html" target="_blank"><strong>ABOUT</strong></a></li>
<li><a class="links" href="./contact.html" target="_blank"><strong>CONTACT</strong></a></li>
</ul>
</nav>
</header>
<main>
<div class="form">
<div class="image"></div>
<h1 class="payment-success">
Payment Successful!
</h1>
<h3 class="payment-discription">
Thank You for making the world a better place to live in !
</h3>
<h5 class="redirecting">Redirecting ... </h5>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TimelineMax.min.js" integrity="sha512-0xrMWUXzEAc+VY7k48pWd5YT6ig03p4KARKxs4Bqxb9atrcn2fV41fWs+YXTKb8lD2sbPAmZMjKENiyzM/Gagw==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js" integrity="sha512-DkPsH9LzNzZaZjCszwKrooKwgjArJDiEjA5tTgr3YX4E6TYv93ICS8T41yFHJnnSmGpnf0Mvb5NhScYbwvhn2w==" crossorigin="anonymous"></script>
<script src="./js/thankyou.js"></script>
<footer>
<div class="center">
Designed and built with love by Amandeep. <br>
©2022-All rights Reserved.
</div>
</footer>
</body>
</html>