-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 2.1 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
<!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 Game</title>
<link rel="icon" href="https://www.svgrepo.com/show/143264/tic-tac-toe-game.svg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="status">
<div class="box" id="X">
<p>Player One</p>
<h1>X</h1>
</div>
<div class="box" id="O">
<p>Player Two</p>
<h1>O</h1>
</div>
</div>
<div class="game">
<div class="row">
<button id="1" onclick="game(this)"></button>
<button id="2" onclick="game(this)"></button>
<button id="3" onclick="game(this)"></button>
</div>
<div class="row">
<button id="4" onclick="game(this)"></button>
<button id="5" onclick="game(this)"></button>
<button id="6" onclick="game(this)"></button>
</div>
<div class="row">
<button id="7" onclick="game(this)"></button>
<button id="8" onclick="game(this)"></button>
<button id="9" onclick="game(this)"></button>
</div>
</div>
<button style="display: block; width: 300px; padding: 10px; background-color: #0271ff57; color: #ffffff; outline: 1px solid #0271ff; border: none; border-radius: 10px; margin-top: 20px; font-size: 18px; display: none;" id="winner">X Won</button>
<button style="width: 300px; padding: 10px; background-color: #0271ff; color: white; outline: none; border: none; border-radius: 10px; margin-top: 20px; font-size: 18px; cursor: pointer" onclick="location.reload()" id="reset">Reset Game</button>
<div style="text-align: center; margin-top: 20px; color: #0271ff;">
<p>Made By <strong>Azaan Ullah Khan</strong> with 💙</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>