-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtictac.html
43 lines (42 loc) · 1.3 KB
/
tictac.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
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="tictac.css">
<link href="https://fonts.googleapis.com/css?family=Just+Another+Hand" rel="stylesheet">
</head>
<body>
<h1>
Tic Tac Toe
<span id="difficultyText">Difficulty</span>
</h1>
<div class="nav">
<button class="difficultyBtn potato selected">Potato</button>
<button class="difficultyBtn grandmaster">Grandmaster</button>
</div>
<div class="container">
<div class="row">
<div id ="0" class="grid"></div>
<div id ="1" class="grid vertical"></div>
<div id ="2" class="grid"></div>
</div>
<div class="row">
<div id ="3" class="grid horizontal"></div>
<div id ="4" class="grid horizontal vertical"></div>
<div id ="5" class="grid horizontal"></div>
</div>
<div class="row">
<div id ="6" class="grid"></div>
<div id ="7" class="grid vertical"></div>
<div id ="8" class="grid"></div>
</div>
</div>
<div class="footer">
<button id="reset">Reset</button>
<span class="victory"></span>
</div>
<script src="tictac.js"></script>
</body>
</html>