diff options
Diffstat (limited to 'AutoAudio.html')
-rw-r--r-- | AutoAudio.html | 96 |
1 files changed, 46 insertions, 50 deletions
diff --git a/AutoAudio.html b/AutoAudio.html index 2f0a1f0..005bcb5 100644 --- a/AutoAudio.html +++ b/AutoAudio.html @@ -1,67 +1,63 @@ <html>
+ <head>
+ <script src="js/latexit.js"></script>
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
+ <link rel="stylesheet" href="css/style.css">
+ <link rel="shortcut icon" type="image/png" href="favicon.png">
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
+ <script src="js/riffwave.js"></script>
+ <title>AutoAudio</title>
+ </head>
+ <body>
+ <div id="navbar"></div>
+ <script src="navbar.js"></script>
+ <h2>AutoAudio</h2>
-<head>
-<script src="js/latexit.js"></script>
-<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
-<link rel="stylesheet" href="css/style.css">
-<link rel="shortcut icon" type="image/png" href="favicon.png">
-<title>AutoAudio</title>
-</head>
-<body>
+ <p>AutoAudio is a program that creates computer generated audio.<br>
+ For an explanation of AutoAudio, go <a href="explanation.html">here</a> <br>
+ After you click "Create", please wait until the audio finishes before listening to it.
+ </p>
-<h2>AutoAudio</h2>
-<a class="header_link" href="index.html">Home</a>
-<a class="header_link" href="all.html">All</a>
-<a class="header_link" href="mathematical.html">Mathematical Demonstrations</a>
-<a class="header_link" href="games.html">Games</a>
-<a class="header_link" href="apps.html">Android Apps</a>
-<hr>
+ <p id='Error'></p>
-<p>AutoAudio is a program that creates computer generated audio.<br>
-For an explanation of AutoAudio, go <a href="explanation.html">here</a> <br>
-After you click "Create", please wait until the audio finishes before listening to it.
-</p>
-<p id='Error'></p>
-<script src='js/riffwave.js'></script>
+ <form id='Options'>
+ <fieldset>
+ <legend>Options</legend>
+ Length: <input type="number" name="leninput" value="5"><br>
+ <input type='checkbox'> Notify me when it finishes.
+ </fieldset>
+ <fieldset>
+ <legend>Advanced Options</legend>
+ Single operator weight: <input type='number' value='1'><br>
+ Number weight: <input type='number' value='1'><br>
+ Function length: <input type='number' value='60'><br>
+ </fieldset>
+ </form>
-<form id='Options'>
-<fieldset>
-<legend>Options</legend>
-Length: <input type="number" name="leninput" value="5"><br>
-<input type='checkbox'> Notify me when it finishes.
-</fieldset>
-<fieldset>
-<legend>Advanced Options</legend>
-Single operator weight: <input type='number' value='1'><br>
-Number weight: <input type='number' value='1'><br>
-Function length: <input type='number' value='60'><br>
-</fieldset>
-</form>
+ <br>
+ <button onclick="create();" type='button' class="btn btn-success">Create</button>
+ <br><br>
-<br>
-<button onclick="create();" type='button' class="btn btn-success">Create</button>
-<br><br>
+ <audio id='Audio' controls></audio>
-<audio id='Audio' controls></audio>
+ <br><br>
-<br><br>
+ <p id='Time'></p>
-<p id='Time'></p>
+ <div id='Function' lang='latex'></div>
-<div id='Function' lang='latex'></div>
+ <script src="js/AutoAudio.js"></script>
+ <noscript>
+ <h1>This web application requires javascript.</h1>
+ </noscript>
-<script src="js/AutoAudio.js"></script>
-<noscript>
-<h1>This web application requires javascript.</h1>
-</noscript>
-
-</body>
-<footer>
-<p>AutoArt is licensed under the <a href='LICENSE.txt'>GNU General public license</a>.</p>
-</footer>
+ </body>
+ <footer>
+ <p>AutoArt is licensed under the <a href='LICENSE.txt'>GNU General public license</a>.</p>
+ </footer>
</html>
|