-
Notifications
You must be signed in to change notification settings - Fork 0
/
practice.html
26 lines (25 loc) · 962 Bytes
/
practice.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
<html>
<head>
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="C:\Users\awast\OneDrive\Documents\c++\webd\tic tac toe.css">
</head>
<body>
<section>
<h1 class="game--title">Tic Tac Toe</h1>
<div class="game--container">
<div id="0" class="cell"></div>
<div id="1" class="cell"></div>
<div id="2" class="cell"></div>
<div id="3" class="cell"></div>
<div id="4" class="cell"></div>
<div id="5" class="cell"></div>
<div id="6" class="cell"></div>
<div id="7" class="cell"></div>
<div id="8" class="cell"></div>
</div>
<h2 class="game--status" id="status">Player,start with X</h2>
<button class="game--restart" onclick="restart()">Restart Game</button>
</section>
<script src="C:\Users\awast\OneDrive\Documents\c++\webd\practice.js"></script>
</body>
</html>