-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfour.html
32 lines (25 loc) · 1.06 KB
/
four.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tic Tac Toe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style1.css">
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> -->
</head>
<body>
<div class="winScreen"></div>
<div class="gameContainer">
<div class="title">4x4 Tic Tac Toe</div><br> <br>
<canvas id="board" width="400" height="400"></canvas>
</div>
<br><br>
<div class="reset"><button onClick="reset()" type="button" class="btn btn-info lg">Reset</button></div>
<a href="four.html" class="b-button">Play 4X4</a><br>
<a href="index.html" class="p-button">Play 3X3</a>
<footer class="footer centered">
<p class="centered">Made by SAV CODERS for Codess mentorship program</p>
</footer>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="js/sketch1.js"></script>
</html>