view apeTool.html @ 1:d7d1aa6d3558

Added intial files. apeTool.html is main index html document to be loaded. core.js contains core functions and classes including audioEngine and audioObjects. graphics.css and structure.css for css style definitions.
author Nicholas Jillings <nicholas.jillings@eecs.qmul.ac.uk>
date Sun, 08 Mar 2015 12:30:25 +0000
parents
children 8d9fd0ba13e3
line wrap: on
line source
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta 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>apeTool</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='graphics.css'>
		<link rel='stylesheet' type='text/css' href='structure.css'>
		<!-- Use jQuery hosted from Google CDN -->
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
		<script src='core.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'>
			<p>HTML5 APE Tool</p>
		</div>
	</body>
</html>