-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (41 loc) · 1.55 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
<head>
<meta charset="UTF-8">
<meta name="description" content="Tic tac toe">
<meta name="keywords" content="HTML, CSS, JavaScript, tic tac toe, ucode, unitfactory, cbl, cblworld">
<meta name="author" content="AKASH PROJECT">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe</title>
<link rel="icon" href="tictactoe_icon.png">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Finger+Paint&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="title" > Tic Tac Toe</h1>
<main>
<section id="field">
<div id="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>
</section>
<section id="sidebar">
<p id="player1">Player 1</p>
<p id="player2">Player 2</p>
<div id="turns">
<p id="titleTurns">Nuber of turns</p>
<p id="numberTurns">0</p>
</div>
<h2 id="status"></h2>
<button id="restart">PLAY AGAIN</button>
</section>
</main>
<script src="script.js"></script>
</body>