-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordTetris.html
More file actions
50 lines (47 loc) · 1.54 KB
/
wordTetris.html
File metadata and controls
50 lines (47 loc) · 1.54 KB
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
<!DOCTYPE html>
<html>
<head>
<title>WordTris</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./Styles/wordTetris.css">
<link rel="icon" href="Images/icon.png" type="image/gif" sizes="16x16">
</head>
<body>
<div class="gameContainer">
<div class="gameTitle">Word Tetris</div>
<div class="startButton">Start</div>
<a href="./frontPage.php"><div class="exitButton">Exit</div></a>
<div class="gameArea">
<div class="gameRect a1"></div>
<div class="gameRect a2"></div>
<div class="gameRect a3"></div>
<div class="gameRect a4"></div>
<div class="gameRect a5"></div>
<div class="gameTub"></div>
</div>
<div class="instruction">
<div class="instructionContent">
<p style="margin-bottom: 10px; font-size: 45px; text-decoration: underline;">Instructions</p>
<ul>
<li>To break the brick type the word in it and press Space</li>
<li>More bricks you break, more scores you get</li>
<li>When the box is full of missed bricks, the game is over</li>
<li>Press start to begin</li>
</ul>
<p style="margin-top: 10px; font-size: 47px; text-align: center;">Good Luck!</p>
</div>
</div>
<div class="gameOver">
<p>Game Over<br>Press start to play again</p>
</div>
<div class="timer">Time</div>
<div class="result">
<p>Result</p>
<p class="level">Level:0</p>
<p class="score">Score:0</p>
</div>
</div>
<script type="text/javascript" src="./Js/wordTetris.js"></script>
</body>
</html>