-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaced.html
59 lines (51 loc) · 1.46 KB
/
placed.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
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">
<title>payment</title>
<style>
h1 {
text-align: center;
color: #00afef;
}
body>div{
width: auto;
height:auto;
margin-bottom: 30px;
}
body{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
button{
width: 250px;
height: 70px;
border: 1px solid green;
border-radius: 12px;
color: green;
background-color: rgb(190, 234, 161);
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
font-weight: 500;
padding: 10px;
transition: all 300ms ease-in-out;
}
button:hover{
transform: scale(1.3);
cursor: pointer;
text-transform: uppercase;
width: 300px;
}
</style>
</head>
<body>
<div>
<img src="https://st4.depositphotos.com/33945136/41707/v/380/depositphotos_417078176-stock-illustration-flat-design-order-confirmation-tick.jpg?forcejpeg=true" alt="">
</div>
<a href="index.html"> <button>Continue Your Shopping</button></a>
</body>
</html>