-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.04 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
<!DOCTYPE html><html lang="en"><head>
<script src="p5.js"></script>
<script src="p5.sound.min.js"></script>
<script src="TicTacToe.js"></script>
<script src="minMax.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<style media="screen">
#canvas_container{
margin-left: 20px;
}
#restart_container{
width: 400px;
margin-left: 20px;
}
h1{
margin-left: 20px;
}
button{
display: block;
background-color: #99ccff;
margin: auto;
border: none;
padding: 15px 30px;
margin-top: 10px;
text-align: center;
color: white;
font-size: 20px;
}
</style>
</head>
<body>
<div> <h1> TicTacToe AI with MinMax </h1> </div>
<div id="canvas_container">
</div>
<div id="restart_container">
<button type="button" name="button" onclick="restart()"> Restart </button>
</div>
<script src="sketch.js"></script>
</body></html>