Mercurial > hg > webaudioevaluationtool
view test.html @ 3141:335bc77627e0 tip
fixing discrete interface to allow labels to display
author | Dave Moffat <me@davemoffat.com> |
---|---|
date | Mon, 26 Jul 2021 12:15:24 +0100 |
parents | db3b7c9ca398 |
children |
line wrap: on
line source
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame Remove this if you use the .htaccess --> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <title>Web Audio Evaluation Tool</title> <meta name="description" content="" /> <meta name="author" content="" /> <!-- Load up the default core JS and CSS files--> <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"> <link rel='stylesheet' type='text/css' href='css/core.css'> <!-- Use jQuery hosted from Google CDN --> <!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>--> <script type="text/javascript" src="js/showdown.min.js"></script> <script type="text/javascript" src="js/jquery-2.1.4.js"></script> <script type="text/javascript" src="js/loader.js"></script> <script type="text/javascript" src="js/bootstrap.min.js"></script> </head> <body> <!-- Load up the default page interface allowing for project setting loads, even if hard-coded--> <!-- Actual test interface design should be contained in the .js for ease of dynamic content--> <div id='topLevelBody'> <span>Web Audio Evaluation Toolbox</span> </div> <div id="popupHolder" class="popupHolder" style="visibility: hidden"> <div id="popupContent"> <div id="popupTitleHolder"></div> <div id="popupResponse"></div> </div> <button id="popup-proceed" class="popupButton">Next</button> <button id="popup-previous" class="popupButton">Back</button> </div> <div class="testHalt" style="visibility: hidden"></div> <div id="footer"><a target="_blank" href="https://github.com/BrechtDeMan/WebAudioEvaluationTool">Web Audio Evaluation Toolbox (v1.2.3)</a></div> </body> </html>