-
Notifications
You must be signed in to change notification settings - Fork 0
/
gift.html
23 lines (19 loc) · 1.55 KB
/
gift.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<body style="background: hsla(20, 100%, 99%, 1);
background: linear-gradient(135deg, hsla(20, 100%, 99%, 1) 0%, hsla(49, 100%, 50%, 1) 10%, hsla(112, 100%, 50%, 1) 22%, hsla(26, 100%, 72%, 1) 34%, hsla(42, 100%, 50%, 1) 47%, hsla(0, 100%, 49%, 1) 61%, hsla(178, 100%, 50%, 1) 71%, hsla(250, 100%, 50%, 1) 82%, hsla(251, 17%, 37%, 1) 91%, hsla(0, 0%, 0%, 1) 100%);
background: -moz-linear-gradient(135deg, hsla(20, 100%, 99%, 1) 0%, hsla(49, 100%, 50%, 1) 10%, hsla(112, 100%, 50%, 1) 22%, hsla(26, 100%, 72%, 1) 34%, hsla(42, 100%, 50%, 1) 47%, hsla(0, 100%, 49%, 1) 61%, hsla(178, 100%, 50%, 1) 71%, hsla(250, 100%, 50%, 1) 82%, hsla(251, 17%, 37%, 1) 91%, hsla(0, 0%, 0%, 1) 100%);
background: -webkit-linear-gradient(135deg, hsla(20, 100%, 99%, 1) 0%, hsla(49, 100%, 50%, 1) 10%, hsla(112, 100%, 50%, 1) 22%, hsla(26, 100%, 72%, 1) 34%, hsla(42, 100%, 50%, 1) 47%, hsla(0, 100%, 49%, 1) 61%, hsla(178, 100%, 50%, 1) 71%, hsla(250, 100%, 50%, 1) 82%, hsla(251, 17%, 37%, 1) 91%, hsla(0, 0%, 0%, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr= #FFFDFC, endColorstr=#FFD000, GradientType=1 ); margin-top: 5%;">
<center>
<img src="rose.jpg" style="width: 20%;">
<button style="color: goldenrod; background-color: darkmagenta;" onclick="home();">back</button>
</center>
<script>
function home()
{
window.location = "index.html";
}
</script>
</body>
</html>