-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic tac Toe</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="head">
<h1> Online Game</h1>
<p>Online gaming is simply the playing of a video game over the internet, usually with friends. Online games can be played on any number of devices from dedicated video games consoles such as PlayStations, Xboxes, and Nintendo Switches, to PCs, laptops and mobile phones</p>
</div>
<div class="abgame">
<h1>TIC-TAC-TOE</h1>
<p> It is a game in which two players seek in alternate turns to complete a row, a column, or a diagonal with either three O's or three X's drawn in the spaces of a grid of nine squares; noughts and crosses.</p>
</div>
<main>
<div class="container">
<div class="game">
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
</div>
</div>
<button id="resetbutton">Reset Game</button>
</main>
<script src="index.js"></script>
<h6>@SambitkumarSwain</h6>
</body>
</html>