-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo7.html
48 lines (40 loc) · 1.18 KB
/
demo7.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
<html>
<head>
<title>
Music Letters
</title>
</head>
<style>
.k{
padding:15px;
margin-left: 10px;
margin-right: 150px;
background-color: pink;
}
.container{
padding:20px;
margin-top: 250px;
}
body{
margin: 0%;
background-color:antiquewhite;
}
input{
margin-right: 100px;
}
input:hover{
transform: scale(1.2);
}
</style>
<body>
<div class="container" >
<input type="button" value="A" class ="k" id="btn1">
<input type="button" value="B" class ="k" id="btn2">
<input type="button" value="C" class ="k" id="btn3">
<input type="button" value="D" class ="k" id="btn4">
<input type="button" value="E" class ="k" id="btn5">
<input type="button" value="F" class ="k" id="btn6">
</div>
</body>
<script type="text/javascript" src="demo7.js"></script>
</html>