-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (51 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- Extra Features:
1.) End-of-game notification
2.) Animations and/or transitions
3.) Game time with some music file
4.) Multiple backgrounds
5.) Extra Animation
-->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A JS game." />
<title>Home</title>
<link rel="stylesheet" type="text/css" href="index.css" />
<script src="fifteen.js" type="text/javascript"></script>
</head>
<body id="body">
<h4 id="game_clock">Total Gametime: 0 seconds</h4>
<h4 id="game_clicks">Total Moves: 0</h4>
<div id="game_board">
<div id="row0">
</div>
<div id="row1">
</div>
<div id="row2">
</div>
<div id="row3">
</div>
</div>
<button id="shuffle_button">Shuffle</button>
<!--<button id="cheat_button">Reset</button>-->
<h6>Change your background image:</h6>
<div id="row_button_container">
<button id="gorilla">Gorilla </button>
<button id="dinosaur">Dinosaur </button>
<button id="horse">Horse </button>
<button id="alligator">Alligator </button>
</div>
<p>
<!-- Actual link to icon of validation wont work on CODD because it is http (unsecured)-->
<a href="http://validator.w3.org/check?uri=referer">
<img class="xhtml_validation" src="./images/xhtml.jpg" alt="Valid XHTML 1.0 Transitional" /></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img class="css_validation" src="./images/css.jpg" alt="Valid CSS!" />
</a>
</p>
</body>
</html>