forked from nathanallen/kyrel
-
Notifications
You must be signed in to change notification settings - Fork 15
/
index.html
37 lines (36 loc) · 856 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
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Kyrel</title>
<link rel="stylesheet" type="text/css" href="kyrel.css">
<script type="text/javascript" src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.js'></script>
<script type="text/javascript" src='kyrel.js'></script>
<script type="text/javascript" src='play.js'></script>
</head>
<body>
<center>
<h2> Kyrel </h2>
</center>
<div class='container'>
<div class='grid'>
<table>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<div class='instructions'>
</div>
</div>
<center>
<br>
<a class='btn play' href='javascript:void(0);'>Play</a>
<a class='btn reset' href='index.html'>Reset</a>
</center>
</body>
</html>