-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlessons.html
85 lines (76 loc) · 2.38 KB
/
lessons.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html>
<head>
<title>Sopelanlehinsounds</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="variables.css">
<link rel="stylesheet" href="Mystyle.css">
</head>
<body>
<header>Sope Lanlehin</header>
<!--Heading with Top pages and Links -->
<nav>
<h6>
<a href="Index.html">About</a>
<a href="videos.html">Videos</a>
<a href="lessons.html">Lessons</a>
<a href="contact.html">Contact</a>
</h6>
</nav>
<!--Table of Runs and Fingering-->
<div>
<div class="row">
<div class="col-2">
<h3 id="scaleheading">3 Primary Scale types</h3>
</div>
<div class="col-3">
<ul>
<li>Major Scale</li>
<li>Minor Scale</li>
<li>Diminished Scale</li>
</ul>
</div>
</div>
<h4 id="Tabheading">Finger position of Scale Keys</h4>
<table class="col-sm-6 col-lg-6">
<div class ="col-12">
<tr>
<th>Hand</th>
<th>Key</th>
<th>Major Scale</th>
<th>Minor Scale</th>
<th>Diminished Scale</th>
</tr>
<tr>
<td>RH</td>
<td>Db</td>
<td>23123412</td>
<td>23123412</td>
<td>31234</td>
</tr>
<tr>
<td>LH</td>
<td>Db</td>
<td>3214321</td>
<td>3214321</td>
<td>32143</td>
</tr>
<tr>
<td>RH</td>
<td>A</td>
<td>12312341</td>
<td>12312341</td>
<td>1234</td>
</tr>
<tr>
<td>LH</td>
<td>A</td>
<td>14321321</td>
<td>14321321</td>
<td>2143</td>
</tr>
</div>
</table>
</div>
</body>
</html>