forked from vontanne/javascript-tetris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
play.html
49 lines (49 loc) · 1.55 KB
/
play.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A classic Tetris game built with pure HTML, CSS, and JavaScript."
/>
<meta
name="keywords"
content="Tetris, HTML5, JavaScript Game, Canvas API"
/>
<meta name="author" content="Hovhannes Hovhannisyan" />
<meta name="theme-color" content="#000000" />
<meta property="og:title" content="Tetris" />
<meta property="og:type" content="game" />
<meta
property="og:url"
content="https://github.com/vontanne/javascript-tetris"
/>
<meta property="og:image" content="./src/assets/tetris-favicon.jpg" />
<meta
property="og:description"
content="Play the classic Tetris game made with HTML, CSS, and Vanilla JavaScript."
/>
<meta property="og:site_name" content="Tetris Game" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@vontanne" />
<meta name="github:account" content="https://github.com/vontanne" />
<meta
name="repository:url"
content="https://github.com/vontanne/javascript-tetris"
/>
<link
rel="shortcut icon"
href="./src/assets/tetris-favicon.jpg"
type="image/jpeg"
/>
<link rel="stylesheet" href="./src/css/style.css" />
<title>Tetris</title>
</head>
<body>
<div id="root">
<h1>Tetris</h1>
</div>
<script src="./src/js/script.js"></script>
</body>
</html>