index.html 691 Bytes
<html>
	<head>
		<title> Oh my Gosh </title>
		<link rel="stylesheet" href="css/main.css">
	</head>

	<body>
		<div id="background"></div>
		<div class="content text">
			<h1>Some WebGL tests</h1>
			<p>
			This is my WebGL playground. The examples are taken from the
			book <a href="http://oreil.ly/program-3d-apps-html5-webGL">
			Programming 3D Applications with HTML5 and WebGL</a> written
			by Tony Parisi and published at O'Reily.
			</p>
			<h2>Examples</h2>
			<p>
			<ul>
				<li><a href="square.html">square</a></li>
				<li><a href="cube.html">cube</a></li>
				<li><a href="texture.html">texture</a></li>
			</ul>
			</p>
		</div>
	</body>
</html>
<!-- vim: set ts=4 sw=4: -->