Files
mttt/public/index.html
2020-04-09 19:18:29 +02:00

33 lines
852 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" style="display: flex; justify-content: space-around;">
<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>