-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
54 lines (49 loc) · 2.67 KB
/
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
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
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="https://codepen.io/steveg3003/pen/zBVakw.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r83/three.min.js"></script>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js"></script>
<script defer src="main.js"></script>
<link rel="stylesheet" href="style.css">
<title>TowerGame - Trò chơi xếp tháp | Tower Stacking Game</title>
<link rel="icon" href="image/favicon.ico" type="image/x-icon">
<!-- Vietnamese SEO -->
<meta name="description" content="TowerGame - Trò chơi xếp tháp thú vị. Thử thách kỹ năng và sự tập trung của bạn bằng cách xếp các khối càng cao càng tốt.">
<meta name="keywords" content="trò chơi xếp tháp, game xếp hình, game kỹ năng, game thử thách">
<meta property="og:title" content="TowerGame - Trò chơi xếp tháp thú vị">
<meta property="og:description" content="Thử thách bản thân với trò chơi xếp tháp hấp dẫn. Xây dựng tháp cao nhất có thể!">
<meta property="og:type" content="website">
<meta property="og:url" content="https://xephinh.vercel.app">
<meta property="og:image" content="https://i.postimg.cc/52jXxVCH/Thi-t-k-ch-a-c-t-n-3.png">
<!-- English SEO -->
<meta name="description" lang="en" content="TowerGame - An exciting tower stacking game. Challenge your skills and focus by stacking blocks as high as possible.">
<meta name="keywords" lang="en" content="tower stacking game, block building game, skill game, challenge game">
<meta property="og:title" lang="en" content="TowerGame - Exciting Tower Stacking Game">
<meta property="og:description" lang="en" content="Challenge yourself with this engaging tower stacking game. Build the highest tower possible!">
<meta property="og:type" content="website">
<meta property="og:url" content="https://xephinh.vercel.app">
<meta property="og:image" content="https://i.postimg.cc/52jXxVCH/Thi-t-k-ch-a-c-t-n-3.png">
<!-- Canonical URL -->
<link rel="canonical" href="https://your-vercel-url.vercel.app">
</head>
<body>
<meta name="viewport" content="width=device-width,user-scalable=no">
<div id="container">
<div id="game"></div>
<div id="score">0</div>
<div id="instructions">Click (or press the spacebar) to place the block</div>
<div class="game-over">
<h2>Game Over</h2>
<p>You did great, you're the best.</p>
<p>Click or spacebar to start again</p>
</div>
<div class="game-ready">
<div id="start-button">Start</div>
<div></div>
</div>
</div>
</body>
</html>