Beispiel:Tic-tac-toe-1.html
Aus SELFHTML-Wiki
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" media="screen" href="./Beispiel:Grundlayout.css">
<title>Tic-Tac-Toe (HTML-Markup)</title>
<style>
</style>
</head>
<body>
<h1>Tic-Tac-Toe (unfertig, nur HTML! )</h1>
<div class="tic-tac-toe" aria-describedby="hint">
<p id="hint">Zum Spielen bitte abwechselnd in die Spielfelder klicken/tappen!</p>
<div id="gameboard">
<button aria-label="x" disabled>A1</button>
<button>A2</button>
<button>A3</button>
<button>B1</button>
<button aria-label="o" disabled>B2</button>
<button>B3</button>
<button>C1</button>
<button>C2</button>
<button>C3</button>
</div>
</div>
</body>
</html>