-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.16 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="">
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<title>Document</title>
</head>
<body>
<div class="clock"></div>
<h1 class="title">Tic-Tac-Toe</h1>
<div class="scores">
<h2 class="cross-score">Cross Score: 0</h2>
<h2 class="circle-score">Circle Score: 0</h2>
</div>
<div class="wrapper">
<div class="top-left top all"></div>
<div class="top-mid top all"></div>
<div class="top-right top all"></div>
<div class="mid-left mid all"></div>
<div class="mid-mid mid all"></div>
<div class="mid-right mid all"></div>
<div class="bottom-left bottom all"></div>
<div class="bottom-mid bottom all"></div>
<div class="bottom-right bottom all"></div>
</div>
<button>Reset</button>
<script src="./app.js"></script>
</body>
</html>