-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.07 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
<!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">
<title>Document</title>
<link href="https://fonts.googleapis.com/css?family=Architects+Daughter|Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Tic Tac Toe</h1>
<div class="row">
<span class="cell" data-id="1"></span>
<span class="cell" data-id="2"></span>
<span class="cell" data-id="3"></span>
</div>
<div class="row">
<span class="cell" data-id="4"></span>
<span class="cell" data-id="5"></span>
<span class="cell" data-id="6"></span>
</div>
<div class="row">
<span class="cell" data-id="7"></span>
<span class="cell" data-id="8"></span>
<span class="cell" data-id="9"></span>
</div>
</div>
<script src="app.js"></script>
</body>
</html>