-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.37 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 1.37 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
<!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.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<link rel="stylesheet" href="css/animate.min.css" />
<link rel="stylesheet" href="css/style.css" />
<title>2048 Game</title>
</head>
<body>
<div class="landing">
<div class="title">
<div class="box animate__animated animate__bounceInDown">
<span>2</span>
</div>
<div class="box animate__animated animate__bounceInDown">
<span>0</span>
</div>
<div class="box animate__animated animate__bounceInDown">
<span>4</span>
</div>
<div class="box animate__animated animate__bounceInDown">
<span>8</span>
</div>
</div>
<a class="playbtn animate__animated animate__bounceInUp" href="modes">
<span>play</span>
</a>
<!-- -=-=-=- CHANGES BY AALIYA -=-=-=- -->
<a class="howTo playbtn animate__animated animate__bounceInUp" href="instructions">
<span>?</span>
</a>
<div class="footer">
<div class="icon">
<a href="https://github.com/Team-Focussed/2048" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>