-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 871 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A cool thing made with Glitch">
<title>2048</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link id="favicon" rel="icon" href="https://cdn.glitch.com/404aeb04-014d-44ec-8ba2-6a558203af37%2F1xfefhlbk7u21.png?v=1604260224975" type="image/x-icon">
<link rel="stylesheet" href="/style.css">
<script src="/script.js" defer></script>
</head>
<body onload = "buildBoard()">
<div id="scorediv">
<div id="title">
2048
</div>
<span class="text" >score: </span>
<span class="text" id="score"></span>
</div>
</body>
</html>