-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlast.html
32 lines (32 loc) · 954 Bytes
/
last.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">
<!-- making the page redirect to product page in 3 seconds -->
<meta http-equiv="refresh" content="3; URL=products.html">
<title>Order Successful</title>
<!-- onpage styling -->
<style>
*{
font-family: "Poppins", sans-serif;
}
body{
text-align: center;
margin-top: 200px;
background-color: black;
color: white;
}
.redirection{
margin-top: 200px;
font-size: 20px;
}
</style>
</head>
<body>
<!-- output text of the last page -->
<h1>Your Order Has Been Placed !!!</h1>
<h1>Thank You For Using SYNERGER.</h1>
<div class="redirection">Please Wait,You Will Be Redirected To Our Products Page.</div>
</body>
</html>