-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathguitar.html
41 lines (39 loc) · 878 Bytes
/
guitar.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
<!DOCTYPE html>
<!--
This is a skeleton html file that you can use to get you started on each new
HTML project
Name: Ranit Dubey
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="guitar.css">
<title>blah</title>
</head>
<body>
<section>
<div id="guitar-fret-box">
<div id="guitar-fret-container">
<img src="guitar-fret.jpg" id="guitar-fret">
</div>
</div>
<div id="buttons">
<button id="A">A</button>
<button id="A-Sharp">A#</button>
<button id="B">B</button>
<button id="C">C</button>
<br>
<button id="C-Sharp">C#</button>
<button id="D">D</button>
<button id="D-Sharp">D#</button>
<button id="E">E</button>
<br>
<button id="F">F</button>
<button id="F-Sharp">F#</button>
<button id="G">G</button>
<button id="G-Sharp">G#</button>
</div>
</section>
<div id="footer"></div>
<script src="guitar.js"></script>
</body>
</html>