-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 906 Bytes
/
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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<title>Quantum Tic-tac-toe</title>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="src/board.js"></script>
<script type="text/javascript" src="src/view.js"></script>
<script type="text/javascript" src="src/quantumt3.js"></script>
</head>
<body>
<div id="container">
<p id="game-title">Quantum Tic-tac-toe</p>
<div id="buttons">
<button type="button" name="new-game">New Game</button>
<button type="button" name="undo">Undo</button>
<button type="button" name="rules">Rules</button>
<button type="button" name="source">Source</button>
</div>
<div id="quantumt3"></div>
<p id="scores"></p>
</div>
</body>
</html>