-
Notifications
You must be signed in to change notification settings - Fork 0
/
set.html
52 lines (44 loc) · 1.56 KB
/
set.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
<!Doctype HTML>
<html>
<head>
<title>Play Set!</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"> </script>
<script type="text/javascript" src="set.js"></script>
<link rel="stylesheet" type="text/css" href="set.css" />
<link href='http://fonts.googleapis.com/css?family=McLaren' rel='stylesheet' type='text/css'>
<link rel="icon" type="image/jpg" href="images/set.jpg">
</head>
<body>
<header>
<h1><span id="allHeading"><span id="purple">Let's</span> <span id="green">Play</span> <span id="red">Set!</span></span></h1>
</header>
<div id="statistics">
<p> Welcome to SET! </p>
<p>You have found <span id="score">0</span> sets.</p>
<p>There are currently <span id="deck">69</span> cards left in the deck</p>
<p><input type="checkbox" id="lastCard"/>Guess the last card</p>
<button id="addMore">Add more cards</button>
<button id="shuffle">Shuffle Cards</button>
<p id="sets"> </p>
<hr/>
<p>Coming Soon:</p>
<p>Sets Available: <span id="possible">X</span></p>
</div>
<div id="gameBoard">
</div>
<div id="backgrounds">
<img src="images/wood1.png"/>
<img src="images/orange.jpg"/>
<img src="images/green.jpg"/>
</div>
<footer>
<a href="about.html">About</a>
|
<a href="http://www.setgame.com/images/tutorial/flash_version/set_flash_tutorial.htm">Learn How to Play</a>
<br/>
© Katlyn Edwards 2012
<br/>
All rights Reserved
</footer>
</body>
</html>