33 lines
816 B
HTML
33 lines
816 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Meta Tic Tac Toe</title>
|
|
<script type="text/javascript" src="mttt.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="mttt.css">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="debug" class="debug-bar">
|
|
<span id="fps"></span>
|
|
<span id="fps-interval"></span>
|
|
<span id="then"></span>
|
|
</div>
|
|
<div id="game_center">
|
|
<div id="game">
|
|
<canvas id="game_canvas"></canvas>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |