-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (38 loc) · 1.45 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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Tic Tac Toe</title>
</head>
<body>
<main>
<h1>Tic Tac Toe!!!</h1>
<div id="board">
<div class="cel" id="cel1"></div>
<div class="cel" id="cel2"></div>
<div class="cel" id="cel3"></div>
<div class="cel" id="cel4"></div>
<div class="cel" id="cel5"></div>
<div class="cel" id="cel6"></div>
<div class="cel" id="cel7"></div>
<div class="cel" id="cel8"></div>
<div class="cel" id="cel9"></div>
</div>
<p id="msg">Click Below to Start</p>
<p id="scores">X: 0 vs O: 0</p>
<button class="clickable" id="btn">Start Game</button>
<div class="options">
<button id="pvc" class="opt-selected opt clickable">P vs C</button><button id="pvp" class="opt clickable">P vs P</button>
</div>
<div class="options">
<button id="easy" class="difficult clickable">Easy</button><button id="normal" class="difficult clickable">Normal</button><button id="hard" class="opt-selected difficult clickable">Hard</button>
</div>
<button class="clickable" id="reset-score">Reset Score</button>
</main>
<script src="jquery-3.3.1.min.js"></script>
<script src="app.js"></script>
</body>
</html>