-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (65 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Negative Harmony Transposition</title>
<link rel="stylesheet" href="nhwg.css">
<script type="text/javascript" src="nhwg.js"></script>
</head>
<body>
<header>
<h1>Negative Harmony Online Transpose</h1>
</header>
<section>
<article>
<div class="line-item tooltip" >Key:
<select name="tone_list" id="tone" class="key">
<option value="C">C</option>
<option value="C#">C#</option>
<option value="D">D</option>
<option value="D#">D#</option>
<option value="E">E</option>
<option value="E#">E#</option>
<option value="F">F</option>
<option value="A">A</option>
<option value="A#">A#</option>
<option value="B">B</option>
</select>
<span class="tooltiptext">Choose here your tonality</span>
</div>
</article>
<article>
<h2>Key Sequence Transposer</h2>
<div class="container">
<input type="text" id="notes" class="line-item" placeholder="Ex: C D E F G A B">
<button onclick="transposer()" class="line-item" >Transpose</button>
<div id="resultatNotes" class="line-item result"> </div>
<div>
</article>
<article>
<h2>Chord Transposer</h2>
<div class="container">
<input class="line-item" type="text" id="accord" placeholder="Ex: Cmaj7, Dm7, Bm7b5">
<button class="line-item" onclick="transposer()">Transpose</button>
<div id="resultatAccord" class="line-item result"></div>
</div>
</article>
<article>
<h2>What is it ?</h2>
<div class="feature-item">Simple Tool for Negative Harmony. All written by chat GPT</div>
</div>
</section>
<div class="footer">
<div class="container">
<div>
<p>Email: contact@ordrumbox.com </p>
<p>© 2024 Ordrumbox Team. | MIT License
</p>
</div>
</div>
</div>
<script>
</script>
</body>
</html>