-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 837 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (23 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="tictactoe.css">
</head>
<body>
<h1>Tic-Ralph-Toe</h1>
<div id="tic-tac-toe-board">
<div class="cell" onclick="makeMove(this)"></div>
<div class="cell" onclick="makeMove(this)"></div>
<div class="cell" onclick="makeMove(this)"></div>
<div class="cell" onclick="makeMove(this)"></div>
<div class="cell" onclick="makeMove(this)"></div>
<div class="cell" onclick="makeMove(this)"></div>
<div class="cell" onclick="makeMove(this)"></div>
<div class="cell" onclick="makeMove(this)"></div>
<div class="cell" onclick="makeMove(this)"></div>
</div>
<p id="result"></p>
<button id="reset" onclick="resetGame()">Reset</button>
</body>
<script src="script.js"></script>
</html>