-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtic.html
65 lines (54 loc) · 1.98 KB
/
tic.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
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Caveat+Brush" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="shortcut icon" type="image/jpeg" href="D:/MINI PROJECT/FINAL/PICS/icon.jpeg" />
<title>GameZone</title>
<link rel="stylesheet" href='tic.css'>
<script src="tic.js"></script>
<script src="ussername.js"></script>
</head>
<body>
<div style="background-image: url('C:/Users/AS/Desktop/ticback.jpg');">
<div class="container">
<div class="jumbotron text-center">
<h1>TIC TAC TOE </h1>
</div>
<div id="chooseP">
<h2>Choose a side</h2><br/><br>
<button id="chooseP1" class="btn btn-primary">X</button> or <button id="chooseP2" class="btn btn-primary">O</button>
</div>
<div class='row'>
<div class='col-md-4 col-md-offset-4' id="scores">P1: 0 P2: 0</div>
</div>
<div id='board'>
<table>
<tr class="top">
<td id="0" class="left"></td>
<td id="1" class="centre"></td>
<td id="2" class="right"></td>
</tr>
<tr class="mid">
<td id="3" class="left"></td>
<td id="4" class="centre"></td>
<td id="5" class="right"></td>
</tr>
<tr class="bot">
<td id="6" class="left"></td>
<td id="7" class="centre"></td>
<td id="8" class="right"></td>
</tr>
</table>
</div>
</div>
<br>
<br>
<button onclick=ticscoredata() >SAVE</button>
<a href="Gameselection.html"><button>END GAME</button></a>
</div>
</body>
</html>