You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
830 B
44 lines
830 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title></title>
|
|
<script src="https://unpkg.com/tone"></script>
|
|
<script src="teoria.js"></script>
|
|
<script src="app.js" defer></script>
|
|
<script src="analyze.js" defer></script>
|
|
<style>
|
|
body {
|
|
font-family: monospace;
|
|
line-height:2em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Tuner</h1>
|
|
<section id="generate-tone">
|
|
<h2>Tone Generator</h2>
|
|
<dl>
|
|
<dt>Tone:</dt>
|
|
<dd></dd>
|
|
</dl>
|
|
<input type="text" />
|
|
<input type="text" />
|
|
<button>Generate Tone</button>
|
|
<button>Generate Note</button>
|
|
<button>Play</button>
|
|
<button>Stop</button>
|
|
</section>
|
|
<section id="analyze-pitch">
|
|
<h2>Pitch Analyzer</h2>
|
|
<button>Analyze</button>
|
|
<dl>
|
|
<dt>Pitch:</dt>
|
|
<dd></dd>
|
|
<dt>Cents flat/sharp</dt>
|
|
<dd></dd>
|
|
</dl>
|
|
</section>
|
|
</body>
|
|
</html>
|