0 of 5 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 5 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
1. Welche Element wird für zeile runter verwendet?
2. Welche Element wird für horizontale Linie verwendet?
3. Welche 2.Elemente brauchen Sie für Tabellentitel ?
4. Welches der folgenden Beispiele ist richtig geschrieben?
A:
table>
<thead>
<tr>
<th>Numbers</th>
<th>Letters</th>
</tr>
</thead>
<tbody>
<tr>
<td>3</td>
<td>A</td>
</tr>
<tr>
<td>2</td>
<td>B</td>
</tr>
<tr>
<td>1</td>
<td>C</td>
</tr>
</tbody>
</table>
B:
table>
<thead>
<th>
<tr>Numbers</tr>
<tr>Letters</tr>
</th>
</thead>
<tbody>
<th>
<td>3</td>
<td>A</td>
</th>
<th>
<td>2</td>
<td>B</td>
</th>
<th>
<td>1</td>
<td>C</td>
</th>
</tbody>
</table>
C:
table>
<thead>
<tr>
<td>Numbers</td>
<td>Letters</td>
</tr>
</thead>
<tbody>
<th>
<td>3</td>
<td>A</td>
</th>
<th>
<td>2</td>
<td>B</td>
</th>
<th>
<td>1</td>
<td>C</td>
</th>
</tbody>
</table>
5. Welches Element verbindet den Text mit ein Input?
A:
<label id="firstname">First Name</label>
<input type="text" name="firstname" id="firstname" required>
B:
<label for="firstname">First Name</label>
<input type="text" name="firstname" id="firstname" required>
C:
<label to=“firstname“>First Name</label>
<input type=“text“ name=“firstname“ id=“firstname“ required>
D:
<label Class=“firstname“>First Name</label>
<input type=“text“ name=“firstname“ id=“firstname“ required>