-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 877 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (27 loc) · 877 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TicTacToe</title>
<link href="https://fonts.googleapis.com/css2?family=Nanum+Pen+Script" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<script defer src="js/main.js"></script>
<a class="background" href="https://imgur.com/6CaswQS" title="a dusty black chalkboard"></a>
</head>
<body>
<h1 id="title">TIC TAC TOE</h1>
<section id="board">
<div id="c0r0"></div>
<div id="c1r0"></div>
<div id="c2r0"></div>
<div id="c0r1"></div>
<div id="c1r1"></div>
<div id="c2r1"></div>
<div id="c0r2"></div>
<div id="c1r2"></div>
<div id="c2r2"></div>
</section>
<button id="btn">Play Again</button>
</body>
</html>