-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://fonts.googleapis.com/css?family=Montserrat:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" type="text/css" />
<script src="script.js" defer></script>
<title>Tic Tac Toe</title>
</head>
<body>
<header>Tic Tac Toe</header>
<main>
<h2 id="commentary">Make your Move</h2>
<div id="frame">
<span class="slot" id="a1"></span>
<span class="slot" id="a2"></span>
<span class="slot" id="a3"></span>
<span class="slot" id="b1"></span>
<span class="slot" id="b2"></span>
<span class="slot" id="b3"></span>
<span class="slot" id="c1"></span>
<span class="slot" id="c2"></span>
<span class="slot" id="c3"></span>
</div>
<button>Play Again?</button>
</main>
<footer>made by CoderLadFahim</footer>
</body>
</html>