-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 955 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tic Tac Toe Game</title>
<link rel="icon" href="images/icon.png">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Tic Tac Toe</h1>
<div class="bttnsContainer">
<button onclick="start(true)">Play With AI</button>
<button onclick="start(false)">Play With Friend</button>
</div>
<div class="inputsContainer hide">
<input type="button" id="0">
<input type="button" id="1">
<input type="button" id="2">
<input type="button" id="3">
<input type="button" id="4">
<input type="button" id="5">
<input type="button" id="6">
<input type="button" id="7">
<input type="button" id="8">
</div>
<button onclick="restart()" class="restartBttn hide">Restart</button>
<script type="text/javascript" src="script.js"></script>
</body>
</html>