-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (47 loc) · 1.44 KB
/
index.html
File metadata and controls
54 lines (47 loc) · 1.44 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
<script type="text/javascript" src="ttt.js"></script>
<title>Tic Tac Toe</title>
</head>
<body>
<center>
<h1>Tic Tac Toe</h1>
</center>
<h2>
Controls
<ul>
<li><a href="" onclick="clearGame()">New Game</a></li>
<li>Scoreboard</li>
</ul>
</h2>
<h3>
Players
<ul>
<li>Player 1: X</li>
<li>Player 2: O</li>
</ul>
</h3>
<br>
<center>
<img id="board" src="board.png" />
<img id="box1" src="blank.png" onclick="toggleBox('box1')" />
<img id="box2" src="blank.png" onclick="toggleBox('box2')" />
<img id="box3" src="blank.png" onclick="toggleBox('box3')" />
<img id="box4" src="blank.png" onclick="toggleBox('box4')" />
<img id="box5" src="blank.png" onclick="toggleBox('box5')" />
<img id="box6" src="blank.png" onclick="toggleBox('box6')" />
<img id="box7" src="blank.png" onclick="toggleBox('box7')" />
<img id="box8" src="blank.png" onclick="toggleBox('box8')" />
<img id="box9" src="blank.png" onclick="toggleBox('box9')" />
</center>
Player 1
<img id="p1image" src="grin.svg" onclick="changePhoto('p1image') />
<!--<img id="p1image" src="grin.svg" />-->
Player 2
<img id="p2image" src="cool.svg" onclick="changePhoto('p2image') />
<!--<img id="p2image" src="cool.svg" />-->
</body>
</html>