-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (50 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="ID=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" >
<!--<div id="logoContainer">
<img src="logo.png" alt="Logo" href="index.html" id="logo">
</div>-->
<title>Music Notes Translator Online</title>
<link href="main.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300&display=swap" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<h1 class="header" href="musicnotestranslator.com">Music Notes Translator Online</h1>
<h3 class="subheader">A little app made by a little girl who likes to play a little music</h3>
<p class="chooseOne">Choose one:</p>
<form role="form">
<div class="radioContainer">
<div class="radioDiv">
<input type="radio" name="translation" value="toCarnatic" id="toCarnatic" class="radio">
<label for="toCarnatic">Western to Carnatic</label>
</div>
<div class="radioDiv">
<input type="radio" name="translation" value="toWestern" id="toWestern" class="radio">
<label for="toWestern">Carnatic to Western</label>
</div>
</div>
<p class="directions">Western Notes: C C#/Db D D#/Eb E F F#/Gb G G#/Ab A A#/Bb B C</p>
<p class="directions">Carnatic Notes: S R1 R2 G1 G2 M1 M2 P D1 D2 N1 N2 S</p>
<div>
<textarea rows="10" cols = "30" placeholder="Enter original notes..." class="textarea" id="original"></textarea>
</div>
<div>
<button type="button" value="Submit" class="button" onclick="saveAndChange()">Translate</button>
</div>
<div>
<textarea rows="10" cols = "30" placeholder="Translated notes..." class="textarea" id="changed" disabled></textarea>
</div>
</form>
<h6 class="footer">Find western notes for many popular songs at <a href="http://www.mintmusic.co.uk/" target="_blank">http://www.mintmusic.co.uk/</a></h6>
</div>
</body>
<script src="main.js"></script>
</html>