-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 1007 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>
<head>
<link href="https://fonts.googleapis.com/css?family=Bowlby+One|Bungee+Inline|Frijole|Roboto" rel="stylesheet">
<!--<script src="node_modules/hammer-touchemulator/touch-emulator.js"></script>
<script> TouchEmulator(); </script> -->
<meta charset="utf-8">
<title>2048 Riot</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="node_modules/animate.css/animate.min.css">
<script src="node_modules/velocity-animate/velocity.min.js"></script>
<script src="node_modules/hammerjs/hammer.js"></script>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1">
</head>
<body>
<app></app>
<script src="node_modules/riot/riot.js"></script>
<script src="node_modules/riot-animate/riotAnimate.min.js"></script>
<script src="js/2048.js"></script>
<script>
window.vent = riot.observable();
riot.mount('app');
</script>
</body>
</html>