-
Notifications
You must be signed in to change notification settings - Fork 2
/
thankyou.html
122 lines (114 loc) · 2.93 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank you</title>
<!-- External CSS file -->
<link rel="stylesheet" href="thankyou.css">
<!-- Ionicons icon CDN -->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</head>
<body>
<!--------------- Header section start --------------->
<header>
<div class="container">
<ion-icon name="sparkles-outline" class="header-icon"></ion-icon>
<h2 class="main-heading">
Your Order is confirmed!
</h2>
<p class="para-line white">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</p>
</div>
</header>
<!--------------- Header section end --------------->
<!--------------- Thank you content section start -------------->
<div class="thankyou-content">
<div class="container">
<h3 class="heading">
Thank you. Your order has been received.
</h3>
<div class="order-summary">
<ul>
<li>
<p>Order number:</p>
<p><b>50744</b></p>
</li>
<li>
<p>Date:</p>
<p><b>February 14, 2022</b></p>
</li>
<li>
<p>Total:</p>
<p><b>$60.00</b></p>
</li>
<li>
<p>Payment method:</p>
<p><b>Cash on delivery</b></p>
</li>
</ul>
</div>
<p class="para-line">
Pay with cash upon delivery.
</p>
<div class="order-detail">
<h2 class="heading">
Order details
</h2>
<table class="order-detail-table">
<tr>
<th>Product</th>
<th>Total</th>
</tr>
<tr>
<td>
Human Face Big-Data Audiobook × 1
</td>
<td>
$50.00
</td>
</tr>
<tr>
<td>Subtotal:</td>
<td>$50.00</td>
</tr>
<tr>
<td>Shipping:</td>
<td>$10.00 via Flat rate</td>
</tr>
<tr>
<td>Payment method:</td>
<td>Cash on delivery</td>
</tr>
<tr>
<td>Total:</td>
<td>$60.00</td>
</tr>
</table>
</div>
</div>
</div>
<!--------------- Thank you content section end -------------->
<!--------------- Thank you CTA start -------------------->
<div class="cta">
<div class="container">
<div class="row">
<div class="cta-content">
<h2 class="cta-heading">Welcome to the Course</h2>
<p class="para-line">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</p>
</div>
<button class="btn border-btn">
<a href="#">
Go to Course <ion-icon name="caret-forward-outline"></ion-icon>
</a>
</button>
</div>
</div>
</div>
<!--------------- Thank you CTA end -------------------->
</body>
</html>