34 lines
824 B
HTML
34 lines
824 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>Aufgabe_4_Tabelle_Fernsehsender</title>
|
||
|
<link rel="stylesheet" href="Format_zu_AB5.css">
|
||
|
<script src="Popups_zu_AB6.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th id="P1" class="Ueberschrift" >ARD</th>
|
||
|
|
||
|
<th id="P2" class="Ueberschrift">ZDF</th>
|
||
|
|
||
|
<th id="P3" class="Ueberschrift">RTL</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="2">Öffentlich-Rechtlich</td>
|
||
|
<td id="priv">Privat</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Tagesschau</td>
|
||
|
<td>Heute</td>
|
||
|
<td>RTL aktuell</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Babylon Berlin</td>
|
||
|
<td>Neo Magazin</td>
|
||
|
<td>IBES</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|