chuck.js/static/html/index.html
2012-07-12 22:40:27 +02:00

33 lines
789 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Chuck</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script data-main="client" src="require.js"></script>
<style>
html, body {
margin: 0;
padding: 0;
display: table;
width: 100%;
height: 100%;
background: #000;
}
#container {
text-align: center;
display: table-cell;
vertical-align: middle;
height: 100%;
}
canvas {
background: #333;
}
</style>
</head>
<body>
<div id="container">
hello chuck<br>
<canvas id="canvas" width="600" height="400"></canvas>
</div>
</body>
</html>