-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathindex.html
40 lines (36 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery Chord Transposer</title>
<link rel="stylesheet" type="text/css" href="jquery.transposer.css" />
</head>
<body style="margin: 30px">
<pre data-key="C">
C G Am F
When I find myself in times of trouble, Mother Mary comes to me
C G F C/E Dm C
Speaking words of wisdom, let it be
C G Am F
And in my hour of darkness, She is standing right in front of me
C G F C/E Dm C
Speaking words of wisdom, let it be
Am G F C
Let it be, let it be, let it be, let it be
G F C/E Dm C
Whisper words of wisdom, let it be
</pre>
<div style="margin-top: 30px; border-top: solid 1px #ddd;padding-top: 15px;font: normal 11px sans-serif">
<p>jQuery Chord Transposer plugin v1.0</p>
<p>©Copyright 2010, Jesse Gavin<br/>
Dual licensed under the MIT or GPL Version 2 licenses.</p>
</div>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript" src="jquery.transposer.js"></script>
<script type="text/javascript">
$(function() {
$("pre").transpose();
});
</script>
</body>
</html>