Dame-Spiel / index.html
Sebastiankay's picture
Update index.html
234fc33 verified
<!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>