Skip to content

Commit 9bbed93

Browse files
committed
Created Tetris game and updated directory name
1 parent cb9c5ea commit 9bbed93

File tree

12 files changed

+49
-0
lines changed

12 files changed

+49
-0
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

TetrisGame/luv2027/index.html

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!DOCTYPE html>
2+
<html lang="en" dir="ltr">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Tetris!</title>
7+
<script src="js/app.js" charset="utf-8"></script>
8+
<link rel="stylesheet" href="css/style.css">
9+
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400&display=swap" rel="stylesheet">
10+
</head>
11+
12+
<body>
13+
<div class="menu-wrap">
14+
<input type="checkbox" class="toggler">
15+
<div class="hamburger">
16+
<div></div>
17+
</div>
18+
<div class="menu">
19+
<div class="menu-content">
20+
<h2 class="t-ucase">rules</h2>
21+
<p class="rules"> Please use the <b class="key">UP</b> key to rotate your tetromino, and <b class="key">LEFT</b>
22+
and <b class="key">RIGHT</b> to <br> move across the board. Pressing <b class="key">DOWN</b> will speed up the
23+
tetromino.</p>
24+
<button class="close fw-400">X</button>
25+
</div>
26+
</div>
27+
</div>
28+
<header>
29+
<h1 class="fw-300 t-ucase">Welcome <br><span class="fw-400 t-wide t-big t-ucase">to tetris</span></h1>
30+
</header>
31+
<main class="game-area">
32+
<div class="game">
33+
<div class="grid"></div>
34+
</div>
35+
<section>
36+
<div class="display">
37+
<h1 class="score fw-400 t-ucase">Your Score <br> <span class="score-display t-ucase fw-300">0</span></h1>
38+
<div class="previous-shape">
39+
<div class="previous-grid"></div>
40+
</div>
41+
<h2 class="lines-display fw-400 t-ucase">Lines:<span class="lines-score">0</span></h2>
42+
</div>
43+
<button class="button t-ucase" href="#">Start / Pause</button>
44+
<small class='footer t-ucase'>made with love 2019</small>
45+
</section>
46+
</main>
47+
</body>
48+
49+
</html>

Tetris_Game/Luv_Patel/index.html

Whitespace-only changes.

0 commit comments

Comments
 (0)