-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
50 lines (39 loc) · 1.54 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE HTML>
<!-- wow
-- wow
-- such game
-- very dogescript
-- wow
-- many challenge
-- so html5
-- much open-source
--
-- For the source code, go to:
-- https://github.com/alexdantas/doge-toe/
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Alexandre Dantas" />
<meta name="description" content="Doge tic-tac-toe made in Dogescript." />
<meta name="keywords" content="doge,dogescript,tic,tac,toe,wow,such,much,so" />
<meta name="Resource-type" content="Document" />
<title>doge toe</title>
<link rel="stylesheet" type="text/css" media="screen" href="index.css">
</head>
<body>
<div id="container">
<h1>doge-toe</h1>
<a style="float:left" href="https://github.com/alexdantas/doge-toe">source code</a>
<a style="float:right" href="http://zachbruggeman.me/dogescript/">dogescript homepage</a>
<!-- Here's where the action happens! -->
<canvas id="screen" width="340" height="340" ></canvas>
</div>
<button id="reset" onclick="resetGame()">Reset</button>
<!-- jQuery for selecting stuff, jQuery UI for the highlight effect -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
<!-- Finally, my game's script -->
<script src="toe.min.js"></script>
</body>
</html>