Spaces:
Running
Running
File size: 1,139 Bytes
234fc33 c29b222 234fc33 c29b222 234fc33 c29b222 234fc33 43169e0 |
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 35 36 37 38 39 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="game-container">
<div id="status">Spieler 1 am Zug</div>
<div id="board"></div>
<div class="buttons">
<button id="new-game">Neues Spiel</button>
</div>
</div>
<div id="winMessage"></div>
<div id="setPlayerNamesWrapperBackdrop">
<div id="setPlayerNamesWrapper">
<div id="setPlayerNamesInputs">
<input type="text" id="inputPlayerName1" autocomplete="off" />
<div id="modeSelect">
<input
type="text"
id="inputPlayerName2"
autocomplete="off"
/><label> <input type="checkbox" id="cpuToggle" /></label>
</div>
<span id="vs">gegen</span>
</div>
<button id="savePlayerNames">Los</button>
</div>
</div>
<script type="text/javascript" src="damelogic.js"></script>
</body>
</html>
|