-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 964 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Virtual Piano</title>
<style>
body {
background-image: url("images/pianobg.jpg");
background-repeat: no-repeat;
background-size: 1280px 610px;
}
button {
position: absolute;
width: 310px;
height: 60px;
background-color: gainsboro;
color: darkgreen;
font-size: 20px;
margin-left: -350px;
margin-top: 370px;
}
</style>
</head>
<body>
<h1 style="color: darkgreen; text-align: center; margin-top: 30px;">♡<span style="color: darkgreen;"> The Virtual Piano </span>♡</h1>
<br/>
<img style="width: 400px; height: 300px; margin-left: 440px;" src="images/piano.gif">
<button type="button" onclick="window.location.href='Piano.html'"><b>♫ Ready to play the piano? ♫</b></button>
</body>
</html>