-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
65 lines (48 loc) · 1.29 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
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>OXO Game</title>
<link rel="stylesheet" type = "text/css" href="css/main.css">
</head>
<body background=" ">
<header><center><h2>O X O Game</h2></center></header>
<br><br><br>
<center>
<h4>Select the Number Of Player</h4>
<select>
<option>Player 1</option>
<option>Player 2</option>
</select>
<br><br>
<div id="row1">
<button class="col1 tile"> </button>
<button class="col2 tile"> </button>
<button class="col3 tile"> </button>
</div>
<div id="row2">
<button class="col1 tile"> </button>
<button class="col2 tile"> </button>
<button class="col3 tile"> </button>
</div>
<div id="row3">
<button class="col1 tile"> </button>
<button class="col2 tile"> </button>
<button class="col3 tile"> </button>
</div>
<br>
<button id="reset">Reset Game</button>
<script src="js/script.js"></script>
</center>
<br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</body>
<footer>
<center>
<h3>Design And Develop By:- Pavan Bhalchandra Patil <br>
Share this at: <br> <a href="https://www.facebook.com"><img src="imges/fb.png" height="35" width="42"></a>
  <img src="imges\insta.jpg" height="35" width="42"><h3>
<br>
</center>
</footer>
</html>