-
Notifications
You must be signed in to change notification settings - Fork 2
/
thankyou.html
40 lines (37 loc) · 1.05 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
<!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>
.contener{
margin-top:200px;
}
h3{
text-decoration: underline;
cursor: pointer;
color: blue;
}
</style>
</head>
<body><div class="contener">
<center>
<img
width="200px"
height="200px"
src="https://w7.pngwing.com/pngs/264/251/png-transparent-check-mark-checkbox-computer-icons-resort-green-tick-icon-check-illustration-miscellaneous-angle-leaf.png" alt="">
<h1 style="color: #82C815;">Thank You For Shopping with us!</h1>
<h3>Your Order has been Placed</h3>
<h3><a onclick="window.location.href='index.html'">Go Back</a></h3>
</center>
</div>
</body>
</html>
<script>
//go to home page
// document.querySelector(".contener").addEventListener("click" ,function(){
// window.location.href="home.html"
// })
</script>