-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 952 Bytes
/
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
<!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" />
<script src="script.js" defer></script>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/x-icon" href="game.png" />
<title>tic-tac-toe</title>
</head>
<body>
<h1>Tic-Tac-Toe</h1>
<dialog class="x-or-o">
<p>Play As:</p>
<button class="x">X</button>
<button class="o">O</button>
</dialog>
<dialog class="for-winner">
<p></p>
<button>Play again?</button>
</dialog>
<gameboard></gameboard>
<div class="current-turn">X</div>
<footer>
<a href="https://www.flaticon.com/free-icons/tac" target="_blank" tac icons"
>Favicon created by Ekros - Flaticon</a
>
<p>Copyright © 2023 by PJ</p>
</footer>
</body>
</html>