-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 1.92 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/animation.css">
</head>
<body>
<!-- Game conditions -->
<div class="hidetop winning">
<p>WINNER</p>
<p class="winner"></p>
</div>
<div class="hidetop draw">
<p>DRAW</p>
</div>
<header>
<h1>TIC TAC TOE</h1>
</header>
<main>
<!-- Control panel -->
<div class="control-panel">
<div class="controler">
<p>TABLE DIMENSION</p>
<input type="text" class="input-box" id="board-dimension" value="3">
<input type="range" class="slider" id="board-size-bar" min="2" max="15" step="1" value="3">
</div>
<div class="controler">
<p>TABLE SIZE</p>
<input type="text" class="input-box" id="board-size" value="33">
<input type="range" class="slider" min="1" max="100" step="1" value="33">
</div>
</div>
<!-- Gaming board -->
<div class="wrap">
<!-- <div class="board">
</div> -->
<audio id="click" src="http://soundbible.com/mp3/Click2-Sebastian-759472264.mp3" autoplay="false"></audio>
<input type="button" value="RESET" class="reset-button">
</div>
<!-- Record book -->
<div class="record-panel">
<div class="player-o">
<h2>O SCORE</h2>
<p>0</p>
</div>
<div class="player-x">
<h2>X SCORE</h2>
<p>0</p>
</div>
</div>
</main>
<script src="js/jquery.js"></script>
<script src="js/main.js"></script>
</body>
</html>