-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1023 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
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Tic Tac Toe</title>
<script src='./src/index.js'></script>
<link rel='stylesheet' href='./site.css'>
</head>
<body>
<div id='root'>
<div id='game'>
<div id='controls'>
<form id='form'>
<select name='mode' id='mode'>
<option value='4'>Easy</option>
<option value='10'>Medium</option>
<option value='100'>Hard</option>
</select>
<select name='first' id='first'>
<option value='player'>You First</option>
<option value='ai'>AI First</option>
</select>
<input type='submit' value='Start New Game' />
</form>
</div>
<div id='board-container'></div>
<div style='height: 44px;'></div>
<div id='copyright'>
Built with <3 by <a href='http://github.com/tarptaeya'>Anmol Gautam</a>
</div>
</div>
</div>
</body>
</html>