-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 1.8 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
</head>
<body>
<div class="container">
<div class="row justify-content-center" id="first">
</div>
<div class="row justify-content-center">
<div class="game-field">
<table id="field">
<tr>
<td><input type="button" class = "btn" value=''></td>
<td><input type="button" class = "btn" value=''></td>
<td><input type="button" class = "btn" value=''></td>
</tr>
<tr>
<td><input type="button" class = "btn" value=''></td>
<td><input type="button" class = "btn" value=''></td>
<td><input type="button" class = "btn" value=''></td>
</tr>
<tr>
<td><input type="button" class = "btn" value=''></td>
<td><input type="button" class = "btn" value=''></td>
<td><input type="button" class = "btn" value=''></td>
</tr>
</table>
</div>
</div>
</div>
<div class="modal_form" id="start_form">
<div class="row justify-content-center question">
Choose X or O:</div>
<div class="row justify-content-center">
<button class="btn2" id="X">X</button>
<button class="btn2" id="O">O</button>
</div>
</div>
<div class="modal_form" id="result_form">
<div class="row justify-content-center question">
GAME OVER!</div>
<div class="row justify-content-center" id="result"></div>
</div>
<div id="overlay"></div>
<script src="script.js"></script>
</body>
</html>