forked from DhanushNehru/Ultimate-Web-Development-Resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html
21 lines (21 loc) · 790 Bytes
/
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>2048 Game Using JavaScript</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/addons/p5.dom.min.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 id="title">2048</h1>
<div id="score-container">
<div id="score-title">SCORE</div>
<div id="score"></div>
</div>
<p id="instructions">Hit the arrow keys to slide the tiles and reach the <span>2048</span> tile!</p>
</div>
<script src="script.js"></script>
</body>
</html>