Spaces:
Running
Running
Update index.html
Browse files- index.html +34 -31
index.html
CHANGED
@@ -1,35 +1,38 @@
|
|
1 |
-
<!
|
2 |
<html lang="en">
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
</div>
|
18 |
-
</div>
|
19 |
-
<div id="winMessage"></div>
|
20 |
-
<div id="setPlayerNamesWrapperBackdrop">
|
21 |
-
<div id="setPlayerNamesWrapper">
|
22 |
-
<div id="setPlayerNamesInputs">
|
23 |
-
<input type="text" id="inputPlayerName1" autocomplete="off" />
|
24 |
-
<div id="modeSelect">
|
25 |
-
<input type="text" id="inputPlayerName2" autocomplete="off" /><label> <input type="checkbox" id="cpuToggle" /></label>
|
26 |
-
</div>
|
27 |
|
28 |
-
|
29 |
-
|
30 |
-
<button id="savePlayerNames">Los</button>
|
31 |
-
</div>
|
32 |
-
</div>
|
33 |
-
<script type="text/javascript" src="damelogic.js"></script>
|
34 |
-
</body>
|
35 |
</html>
|
|
|
1 |
+
<!doctype html>
|
2 |
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6 |
+
<title>Document</title>
|
7 |
+
<link rel="stylesheet" type="text/css" href="style.css" />
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div id="game-container">
|
11 |
+
<div id="status">Spieler 1 am Zug</div>
|
12 |
+
<div id="board"></div>
|
13 |
+
<div class="buttons">
|
14 |
+
<button id="new-game">Neues Spiel</button>
|
15 |
+
</div>
|
16 |
+
</div>
|
17 |
+
<div id="winMessage"></div>
|
18 |
+
<div id="setPlayerNamesWrapperBackdrop">
|
19 |
+
<div id="setPlayerNamesWrapper">
|
20 |
+
<div id="setPlayerNamesInputs">
|
21 |
+
<input type="text" id="inputPlayerName1" autocomplete="off" />
|
22 |
+
<div id="modeSelect">
|
23 |
+
<input
|
24 |
+
type="text"
|
25 |
+
id="inputPlayerName2"
|
26 |
+
autocomplete="off"
|
27 |
+
/><label> <input type="checkbox" id="cpuToggle" /></label>
|
28 |
+
</div>
|
29 |
|
30 |
+
<span id="vs">gegen</span>
|
31 |
+
</div>
|
32 |
+
<button id="savePlayerNames">Los</button>
|
33 |
+
</div>
|
34 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
+
<script type="text/javascript" src="damelogic.js"></script>
|
37 |
+
</body>
|
|
|
|
|
|
|
|
|
|
|
38 |
</html>
|