-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (93 loc) · 3.82 KB
/
index.html
File metadata and controls
93 lines (93 loc) · 3.82 KB
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
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Alegreya&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/index.css">
<title>Ear Training Home</title>
</head>
<body>
<div id="app">
<div class="supreme-container">
<header>
<span>Ear Training</span>
</header>
<div class="header-placeholder">
<span>Ear Training</span>
</div>
<div class="main-container">
<div class="welcome-container">
<div style="font-size: 1.5rem;">Welcome to Ear Training!</div>
<p>Here you will find a collection of apps to help train your ear in interval and chord
recognition. Practicing for just a few minutes every day will improve your ability to
transcribe melodies and progressions in songs you know and love!
</p>
</div>
<div class="app-links-container">
<div style="font-size: 1.5rem;">Apps</div>
<div class="app-links">
<span class="app-link">
<a href="./interval-id.html">Interval ID</a>
</span>
<span class="app-link">
<a href="./chord-quality.html">Chord Quality</a>
</span>
<span class="app-link">
<a href="./all-chords-id.html">All Chords ID</a>
</span>
<span class="app-link">
<a href="./basic-motions-id.html">Basic Motions ID</a>
</span>
<span class="app-link">
<a href="./tonic-id.html">Tonic ID</a>
</span>
<span class="app-link">
<a href="./dominant-id.html">Dominant ID</a>
</span>
<span class="app-link">
<a href="./subdominant-id.html">Subdominant ID</a>
</span>
<span class="app-link">
<a href="#">Chord Progressions</a>
</span>
</div>
</div>
<div class="interval-cheat-sheet-container">
<div style="font-size: 1.5rem;">Interval Cheat Sheet</div>
<ul>
<li>Minor 2nd (half step): Jaws</li>
<li>Major 2nd: Happy Birthday</li>
<li>Minor 3rd: Attack on Titan</li>
<li>Major 3rd: Summer (Vivaldi)</li>
<li>Perfect 4th: Here Comes the Bride, Force Theme</li>
<li>Perfect 5th: Twinkle, Also Sprach Zarathustra</li>
<li>Minor 6th: Across the Stars</li>
<li>Major 6th: My Bonnie, Leia's Theme</li>
<li>Minor 7th: There's a Place For Us</li>
<li>Major 7th: Take on Me</li>
</ul>
</div>
<div class="chord-cheat-sheet-container">
<div style="font-size: 1.5rem;">Chords Cheat Sheet</div>
<ul>
<li>I (tonic): Home, resolution, stability.</li>
<li>ii (subdominant): Ambivalent instability, close to home.</li>
<li>iii (mediant, tonic function): Wistful, incomplete resolution.</li>
<li>IV (subdominant): Ambivalent stability, happy to come home or push ahead.</li>
<li>V (dominant): Tense, yearning, unresolved, furthest from home.</li>
<li>vi (submediant, tonic function): Sad, stable home.</li>
<li>vii (dominant): Tense, unresolved, reaching for home.</li>
</ul>
<ul>
<li>V / I (authentic cadence): The quintessential homecoming.</li>
<li>IV / I (plagal cadence): Light resolution with tonic as a common tone.</li>
<li>V / vi (deceptive cadence): Melancholy stepwise resolution, common in rock and pop.</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>