forked from iJosef/helpachildfoundation-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuccess.html
32 lines (30 loc) · 1 KB
/
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
<!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">
<title>Thank You!</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="assets/success.css">
</head>
<body>
<section>
<div class="container">
<div class="success__box">
<i class="far fa-check-circle"></i>
<span>Payment Successful</span>
</div>
<div class="text-content">
<p>Thank You for donating</p>
<div class="btn--group">
<a class="btn" href="index.html">
<i class="fas fa-home"></i>
<span>Go Back Home</span>
</a>
</div>
</div>
</div>
</section>
</body>
</html>