-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 776 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 776 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Tic Tac Toe</title>
<style>
*
{
padding: 0px;
margin: 0px;
border: none;
}
div
{
width: 0px;
height: 0px;
padding: 0px;
margin: 0px;
}
</style>
</head>
<body>
<script src="Utils.js"></script>
<script src="Keyboard.js"></script>
<script src="Mouse.js"></script>
<script src="Rect.js"></script>
<script src="Game.js"></script>
<script src="Renderer.js"></script>
<script src="Main.js"></script>
</body>
</html>