-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuceess_Vikas.html
46 lines (44 loc) · 1.01 KB
/
Suceess_Vikas.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
<!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>Document</title>
</head>
<style>
.vikas_box5{
margin-left:500px;
margin-top: 500;
}
h2{
font-size: 50px;
color: green;
}
h4{
font-size: 40px;
color: purple;
}
button{
background-color: black;
color:whitesmoke;
font-size: 16px;
cursor: pointer;
}
</style>
<body>
<div>
<img src="https://cdn.shopify.com/s/files/1/0449/5225/6667/files/website-logo.png?14899" alt="">
</div>
<div class="vikas_box5">
<h2>Payment Successful...!</h2>
<h4>Your Order Successfully placed..!</h4>
<button>Click Here To Home Page</button>
</div>
</body>
</html>
<script>
document.querySelector("button").addEventListener("click",()=>{
window.location.href="index.html"
})
</script>