29 lines
726 B
HTML
29 lines
726 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>This site requires javascript...</div> -->
|
|
<div id="game_center">
|
|
<div id="game">
|
|
<canvas id="game_canvas"></canvas>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |