-
Notifications
You must be signed in to change notification settings - Fork 0
/
tictoctoe.html
38 lines (35 loc) · 1008 Bytes
/
tictoctoe.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Play with fun!</title>
<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="stylesheet" href="tic.css">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Welcome to Tic Toc Toe</h1>
<p>Play having fun!</p>
<button id="butt" type="button" class="btn btn-primary btn-lg" name="button">Restart</button>
</div>
<table align='center'>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
</body>
</html>