forked from SORDE12/overstock.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal-page.html
More file actions
59 lines (51 loc) · 1.33 KB
/
final-page.html
File metadata and controls
59 lines (51 loc) · 1.33 KB
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
<!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">
<link rel="shortcut icon" href="https://ak1.ostkcdn.com/images/mxc/overstock-favicon-lg.ico" type="image/x-icon">
<title>Overstock || Thanks Page</title>
</head>
<Style>
#container{
width: 100%;
text-align: center;
}
#img{
width: 60%;
height: 400px;
margin: auto;
margin-bottom: 50px;
margin-top: 40px;
}
#btn{
width: 200px;
height: 40px;
font-size: 15px;
font-weight: bold;
/* margin-left: 45%; */
background-color: rgb(17, 160, 48);
color: cornsilk;
border-radius: 10px;
border: none;
}
#btn:hover{
background-color: rgb(60, 184, 60);
}
</Style>
<body>
<div id="container">
<div id="img">
<img
src="http://www.shikharclasses.in/wp-content/uploads/2020/04/PAYMENT-SUCCESS.png" alt="">
</div><br>
<button id="btn">Continue Shopping</button>
</div>
</body>
</html>
<script>
document.getElementById("btn").addEventListener("click",function(){
window.location.href="/index.html"
})
</script>