-
Notifications
You must be signed in to change notification settings - Fork 0
/
orderPlaced.html
53 lines (51 loc) · 1.48 KB
/
orderPlaced.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
<!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">
<title>Order Placed</title>
<style>
#vid{
width: 800px;
/* border: 1px solid black; */
margin: 0% 20% 0% 30%;
height: 450px;
border-radius: 50%;
}
#check{
width: 100px;
}
#orderText{
/* border: 1px solid black; */
width: 400px;
/* margin: auto; */
/* align-items: center; */
text-align: center;
margin: 0% 20% 0% 40%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
height: 350px;
padding-top: 30px;
}
#btnMore{
width: 150px;
height: 45px;
background-color:black;
border: none;
color:white ;
border-radius:8px;
cursor: pointer;
font-size:16px;
}
</style>
</head>
<body>
<video id="vid" src="/images/shopping_bag_-_25646 (Original).mp4" autoplay muted loop ></video>
<div id="orderText">
<h2>Congratulations !</h2>
<img id="check" src="/images/check.png">
<h3>Your order has been placed successfully</h3>
<button id="btnMore" onclick="window.location.href='index.html'">Explore More</button>
</div>
</body>
</html>