-
Notifications
You must be signed in to change notification settings - Fork 0
/
tic_tac_toe.html
39 lines (35 loc) · 1.2 KB
/
tic_tac_toe.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
<!--Author:Mahbubul Hasan Sakib-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="tctctc.css" />
</head>
<body>
<p>Who is winner?</p>
<div id="play">
<button id="load" onclick="reload()">Play Again</button>
</div>
<p color="red"></p>
<div class="tic_tac_toe">
<div class="btn_class">
<button class="btn" id="b1"onclick="fun('b1')">☻</button>
<button class="btn" id="b2" onclick="fun('b2')">☻</button>
<button class="btn" id="b3"onclick="fun('b3')">☻</button>
</div>
<br/>
<div class="btn_class">
<button class="btn" id="b4"onclick="fun('b4')">☻</button>
<button class="btn" id="b5"onclick="fun('b5')">☻</button>
<button class="btn" id="b6"onclick="fun('b6')">☻</button>
</div>
<br/>
<div class="btn_class">
<button class="btn" id="b7"onclick="fun('b7')">☻</button>
<button class="btn" id="b8"onclick="fun('b8')">☻</button>
<button class="btn" id="b9"onclick="fun('b9')">☻</button>
</div>
</div>
<h2>Tic-Tac-Toe</h2>
<br/>
<script src="ttc.js"></script>
</body>
</html>