tic-tac-toe-/src/index.html
2021-04-11 20:56:32 +01:00

33 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src='./code.js'></script>
<link rel="stylesheet" href="style.css">
<title>Tic Tac Toe</title>
</head>
<body onload="load();">
<table id='board'>
<tr>
<th><button onmousedown="move('00');" id='id00'></button></th>
<th><button onmousedown="move('01');" id='id01'></button></th>
<th><button onmousedown="move('02');" id='id02'></button></th>
</tr>
<tr>
<th><button onmousedown="move('10');" id='id10'></button></th>
<th><button onmousedown="move('11');" id='id11'></button></th>
<th><button onmousedown="move('12');" id='id12'></button></th>
</tr>
<tr>
<th><button onmousedown="move('20');" id='id20'></button></th>
<th><button onmousedown="move('21');" id='id21'></button></th>
<th><button onmousedown="move('22');" id='id22'></button></th>
</tr>
</table>
</body>
</html>