Skip to content

Commit c4878b2

Browse files
Merge pull request #808 from nizam-786mohaideen/patch-2
Update index.html
2 parents 5402bba + 3fde214 commit c4878b2

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

2048 Game/index.html

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,24 @@
1-
<html>
2-
<head>
3-
<link rel="stylesheet" href="style.css">
4-
<script src ="script.js"></script>
5-
<title>2048 Game</title>
6-
</head>
7-
<body>
8-
<div class = "header">2048 Game</div>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
<script src="script.js" defer></script>
8+
<title>2048 Game</title>
9+
</head>
10+
<body>
11+
<div class="header">2048 Game</div>
912

10-
<div class = "instructions">Instructions: Use arrow key to play. Refresh the page to restart.</div>
13+
<div class="instructions">
14+
Instructions: Use arrow keys to play. Refresh the page to restart.
15+
</div>
1116

12-
<div class = "scoreContainer">
13-
<div class="scoreTitle">score</div>
14-
<span id="score">0</span>
15-
</div>
17+
<div class="scoreContainer">
18+
<div class="scoreTitle">Score</div>
19+
<span id="score">0</span>
20+
</div>
1621

17-
<div class ="grid"></div>
18-
</body>
22+
<div class="grid"></div>
23+
</body>
1924
</html>

0 commit comments

Comments
 (0)