EQL5/examples/M-modules/webkit/Tic-Tac-Toe/tic-tac-toe.htm
2016-11-25 23:30:38 +01:00

39 lines
977 B
HTML

<html>
<head>
<style>
body {
background-color: lavender; }
.cells {
width: 2cm; height: 2cm;
text-align: center;
font-family: Courier New, Courier, FreeMono, monospaced; font-size: 1.7cm; font-weight: bold;
color: white; background-color: steelblue; }
input {
font-size: small; }
</style>
</head>
<body>
<h2>Tic-Tac-Toe</h2>
<table id="board">
<tr>
<td id="c1"><td id="c2"><td id="c3">
</tr>
<tr>
<td id="c4"><td id="c5"><td id="c6">
</tr>
<tr>
<td id="c7"><td id="c8"><td id="c9">
</tr>
</table>
<p>
<input type="button" value="New Game" id="new-game">
<input type="button" value="Clear History" id="clear-history">
<input type="button" value="Demo" id="demo">
</p>
<img id="i1">&nbsp;
<img id="i2">&nbsp;
<img id="i3">&nbsp;
<img id="i4">&nbsp;
<img id="i5">
</body>
</html>