https://sosci.univie.ac.at/SudokuTest/?act=y6l9Hk3I4H4MgcK5dzelho4r
Ich habe einen Fragebogen nur mit dem Sudoku und der anschließenden Frage darunter gemacht. Ich hoffe Sie können Ihn öffnen!
Und hier ist noch der aktuelle Code dazu:
Bitte sehen Sie sich nun dieses Sudoku an:
<br>
<br>
<link rel="stylesheet" href="
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML Sudoku </title>
<style type="text/css">
html, body {
background-color: #FAFAFA
}
table {
border: 2px solid #000000;
}
td {
border: 1px solid #000000;
text-align: center;
vertical-align: middle;
}
input {
color: #000000;
padding: 0;
border: 0;
text-align: center;
width: 58px;
height: 58px;
font-size: 20px;
background-color: #FFFFFF;
outline: none;
}
input:disabled {
background-color: #c8c8c8;
}
#cell-0, #cell-1 { border-top: 2px solid #000000; }
#cell-1, #cell-5 { border-right: 2px solid #000000; }
#cell-4, #cell-5 { border-bottom: 2px solid #000000; }
#cell-0, #cell-4 { border-left: 2px solid #000000; }
#cell-2, #cell-3 { border-top: 2px solid #000000; }
#cell-3, #cell-7 { border-right: 2px solid #000000; }
#cell-6, #cell-7 { border-bottom: 2px solid #000000; }
#cell-2, #cell-6 { border-left: 2px solid #000000; }
#cell-8, #cell-9 { border-top: 2px solid #000000; }
#cell-9, #cell-13 { border-right: 2px solid #000000; }
#cell-12, #cell-13 { border-bottom: 2px solid #000000; }
#cell-8, #cell-12 { border-left: 2px solid #000000; }
#cell-10, #cell-11 { border-top: 2px solid #000000; }
#cell-11, #cell-15 { border-right: 2px solid #000000; }
#cell-14, #cell-15 { border-bottom: 2px solid #000000; }
#cell-10, #cell-14 { border-left: 2px solid #000000; }
</style>
<div class="container">
<table id="grid">
<tr>
<td><input id="cell-0" type="text" value="2" disabled></td>
<td><input id="cell-1" type="text" value="1" disabled></td>
<td> %input:ZE01_02%</td>
<td> %input:ZE01_03% </td>
</tr>
<tr>
<td> %input:ZE01_04% </td>
<td><input id="cell-5" type="text" value="3" disabled></td>
<td><input id="cell-6" type="text" value="2" disabled></td>
<td> %input:ZE01_07% </td>
</tr>
<tr>
<td> %input:ZE01_08% </td>
<td> %input:ZE01_09% </td>
<td> %input:ZE01_10% </td>
<td><input id="cell-11" type="text" value="4" disabled></td>
</tr>
<tr>
<td><input id="cell-12" type="text" value="1" disabled></td>
<td> %input:ZE01_13% </td>
<td> %input:ZE01_14% </td>
<td> %input:ZE01_15% </td>
</tr>
</table>
</div>
<br>