-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (32 loc) · 1.45 KB
/
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
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>:: Hearts game ::</title>
<link rel="stylesheet" href="css/normalize.css" />
<!-- <link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css' /> -->
<link rel="stylesheet" href="css/styles.css" />
<script src="js/jquery-1.10.1.min.js"></script>
<script src="js/collie.js"> </script>
<script type="text/javascript" src="js/collie.addon.min.js"></script>
</head>
<body>
<section>
<div id="container"></div>
<!-- <div id="mainWrap"> -->
<!-- <div id="player1" class="spot">
<figure class="card"></figure>
</div>
<div id="player2" class="spot"></div>
<div id="player3" class="spot"></div>
<div id="player4" class="spot"></div> -->
<!-- <p>Testing</p> -->
<!-- <canvas id="canvas">Boooooo. This text is displayed if your browser does not support HTML5 Canvas. You might wanna install the latest version of <a href="https://www.google.com/chrome/">Chrome</a>, <a href="http://www.mozilla.org/en-US/firefox/new/">Firefox</a>, <a href="http://windows.microsoft.com/en-GB/internet-explorer/products/ie/home">Internet Explorer</a> or <a href="http://www.apple.com/safari/">Safari</a>.
</canvas> -->
<!-- </div> -->
</section>
<!-- script src="js/canvasUtils.js"> </script-->
<script src="js/hearts.js"> </script>
</body>
</html>