-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> XOX </title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="gameMenu">
<h3 > Game rules are standart . First player is 'X' </h3>
<h3> If game is draw , it will restart </h3>
<button onclick="restartGame()"> restart Game</button>
</div>
<div class="gameBoard">
<div class="area one"></div>
<div class="area two"></div>
<div class="area three"></div>
<div class="area four"></div>
<div class="area five"></div>
<div class="area six"></div>
<div class="area seven"></div>
<div class="area eight"></div>
<div class="area nine"></div>
</div>
</div>
<footer>
created by Nihat
</footer>
<script src="main.js"></script>
</body>
</html>