-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
24 lines (24 loc) · 996 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bowling Online 2</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<meta property="og:title" content="Bowling Online 2"/>
<meta property="og:url" content="https://iliagrigorevdev.github.io/bowlingonline2/"/>
<meta property="og:description" content="Bowling game with accurate physics, beautiful 3D graphics and easy-to-use controls."/>
<meta property="og:type" content="game"/>
<meta property="og:image" content="https://iliagrigorevdev.github.io/bowlingonline2/icon.png"/>
<meta property="og:image:width" content="512"/>
<meta property="og:image:height" content="512"/>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<style>
body { margin: 0; overflow: hidden; }
canvas { touch-action: none; width: 100%; height: 100%; }
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script src="BowlingOnline2.js"></script>
</body>
</html>