-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
33 lines (33 loc) · 1.06 KB
/
index2.html
File metadata and controls
33 lines (33 loc) · 1.06 KB
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
<!-- TicTacToe Js RactionalScripts-->
<!DOCTYPE html>
<html>
<head>
<title>TicTacToe</title>
<link href="TicTacToeJs/css/tictactoe.css" rel="stylesheet" type="text/css" >
<script src="TicTacToeJs/js/jquery.js" type="text/javascript"></script>
<script src="TicTacToeJs/js/tictactoe.js" type="text/javascript"></script>
</head>
<body>
<div class="header"><div class="name">Js-Games</div></div>
<div class="outer-box">
<div class="tic-box">
<div class="tic-head">
Tic-Tac-Toe
</div>
<div class="tic-body">
<div class="tic-item" id="t0"></div>
<div class="tic-item" id="t1"></div>
<div class="tic-item" id="t2"></div>
<div class="tic-item" id="t3"></div>
<div class="tic-item" id="t4"></div>
<div class="tic-item" id="t5"></div>
<div class="tic-item" id="t6"></div>
<div class="tic-item" id="t7"></div>
<div class="tic-item" id="t8"></div>
</div>
<div class="tic-output">Game is Ready</div>
</div>
</div>
<div class="footer"><div class="name">@ RationalScripts</div></div>
</body>
</html>