-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsuccss.html
44 lines (37 loc) · 869 Bytes
/
succss.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
<!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>Success</title>
<link rel="icon" type="image" href="bathandbodyicon.jpg">
<style>
h1{
color: green;
}
marquee
{
behavior:scroll
}
button{
width:20%;
height: 45px;
background-color: black;
font-weight: bold;
color: beige;
}
button:hover{
width:20%;
height: 45px;
background-color: white;
font-weight: bold;
color: black;
}
</style>
</head>
<body>
<marquee scrollamount="15"><h1>Thank you for purchasing</h1></marquee>
<a href="index.html"><button>Go To HomePage</button></a>
</body>
</html>