-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (40 loc) · 1.32 KB
/
Copy pathindex.html
File metadata and controls
47 lines (40 loc) · 1.32 KB
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>
<meta name="title" content="Tic Tac Toe Game" />
<meta
name="description"
content="Play a modern Tic Tac Toe game online with score tracking, editable player names, and responsive design. Built using HTML, CSS, and JavaScript."
/>
<meta
name="keywords"
content="tic tac toe, javascript game, tic tac toe online, web game, html css js project, frontend project, webdevzone"
/>
<meta name="author" content="Apurv" />
<link rel="stylesheet" href="assets/css/style.css" />
<link
rel="icon"
type="image/png"
href="assets/images/Tic-Tac-Toe_Logo.png"
/>
</head>
<body>
<div class="container">
<header class="heading">Tic Tac Toe</header>
<div class="winingBox">
<div class="winingMassage"></div>
<button class="newGame">New Game</button>
</div>
<div class="players">
<p id="p1Display">❌ Player 1</p>
<p id="p2Display">⭕ Player 2</p>
</div>
<main class="gameContainer"></main>
<button class="reset" id="hideBox">Reset</button>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>