-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (81 loc) · 3.8 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
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
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="og:title" property="og:title" content="Note Along">
<meta name="description" content="Follow along to notes displayed on the screen and be a better musician">
<meta property="og:image" content="https://github.com/rapsamaniego27/note-along/blob/master/images/thumbnail.JPG?raw=true">
<meta property="og:url" content="https://note-along.netlify.app/">
<title>Note Along</title>
<!-- Row Styles -->
<link rel="stylesheet" href="dist/style.min.css">
<link rel="shortcut icon" href="#">
</head>
<body>
<div id="wrapper">
<div id="main">
<div class="note-display mt-sm-30" id="noteDisplay">
<div class="app-heading__container">
<h1 class="app-heading"><i class="fa fa-music"></i>ote Along</h1>
</div>
<span class="note hex-white head4 mt-30" id="note">--</span>
<ul class="interval-dots" id="dots">
</ul>
</div>
<form method="GET" class="app">
<!-- Options for the app -->
<div class="app-options mt-20">
<!-- Row Note Set -->
<div class="option" id="noteSets">
<label for="noteSet" class="option-label">Note set:</label>
<select name="note-set" id="noteSet">
<!-- Insert note sets here through json -->
</select>
<span class="option-arrow"></span>
</div>
<!-- Row Interval -->
<div class="option" id="intervals">
<label for="interval" class="option-label">Interval:</label>
<select name="interval" id="interval">
<!-- Insert Intervals here through json -->
</select>
<span class="option-arrow"></span>
</div>
<div class="option mt-40" id="noteSounds">
<label for="noteSound" class="option-label">Note Sounds:</label>
<select name="noteSound" id="noteSound">
<!-- Insert Intervals here through json -->
<option value="off">Off</option>
<option value="first">Play at the first sec</option>
<option value="last">Play at the last sec</option>
</select>
<span class="option-arrow"></span>
</div>
</div>
<!-- Button for the app -->
<button class="btn btn-accent mt-30" id="start">Start Exercise</button>
<button class="btn btn-warning mt-30" id="stop">Stop</button>
</form>
<footer class="mt-sm-20 mb-sm-20">
<div class="footer-sublinks">
<a href="#" target="_blank" class="sublink">About</a>
<a href="#" target="_blank" class="sublink">How to use</a>
</div>
<div class="footer__social-media-links">
<a href="mailto:[email protected]?subject=Greetings Ralph" class="social-media" target="_blank"><i class="fa fa-envelope"></i></a>
<a href="https://twitter.com/Rapunk77" class="social-media"><i class="fa fa-twitter" target="_blank"></i></a>
<a href="https://www.linkedin.com/in/ralph-martyn-samaniego-b67837190/" class="social-media"><i class="fa fa-linkedin" target="_blank"></i></a>
<a href="https://github.com/rapsamaniego27/note-along" class="social-media"><i class="fa fa-github" target="_blank"></i></a>
</div>
<p class="footer-texts mt-20">All rights reserved © Rap Samaniego</p>
</footer>
</div>
</div>
<!-- Row Scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/14.7.45/Tone.js"></script>
<script src="./dist/app.js"></script>
<script src="https://kit.fontawesome.com/e33b567028.js"></script>
</body>
</html>