-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (41 loc) · 1.44 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<title>GuitarBud</title>
<link type="text/css" rel="stylesheet" href="css/style.css">
</head>
<body>
<a href="#"><div id="gb-bar">
<strong>Guitar<span id="bud">Bud</span></strong>
</div></a>
<div id="song-combobox">
<canvas id="shadow-canvas"></canvas>
<div id="song-combobox-inner">
<div><input type="text" id="song-input" value="" autofocus onfocus="this.value = this.value;"></div>
<div id="button-row">
<a href="javascript:;"><div class="home-button" id="hb1">Find Song</div></a>
<a href="javascript:;"><div class="home-button" id="hb2">Random</div></a><br>
<div id="extra-links"><a href="about.html"><span id="about-link">About</span></a> | <a href="about.html#contact">Contact us</a> | <a href="about.html#terms">Terms & Conditions</a></div>
</div>
</div>
</div>
<div id="playback-control"></div>
<div id="info">
<table id="song-list">
<tr>
<td><a href = "stairway.html">Led Zeppelin</a></td>
<td><a href = "stairway.html">Stairway To Heaven</a></td>
<td><a href = "stairway.html">232 pts.</a></td>
</tr>
<tr>
<td><a href = "morethanwords.html">Extreme</a></td>
<td><a href = "morethanwords.html">More Than Words</a></td>
<td><a href = "morethanwords.html">90 pts.</a></td>
</tr>
</table>
<strong></strong>
</div>
</body>
<script src="js2/jquery.min.js"></script>
<script src="js2/script_draw.js"></script>
<script src="js2/script.js"></script>
</html>