komp aufgabe

This commit is contained in:
danielvici123
2024-11-07 13:00:21 +01:00
parent 5dda85f2d8
commit a6319190ae
3 changed files with 100 additions and 4 deletions

View File

@@ -7,9 +7,6 @@
}
.text-allign-middle{
text-align: center;
}
.allign-left{
}
* {
border : 1px solid black;

View File

@@ -16,9 +16,10 @@
<ul>
<li class="li-abstand"><a href="https://u.gg/lol/profile/euw1/darkhuawarim-3253/overview" class="text-bold">League Profile</a></li>
<li class="li-abstand"><a href="24-10-16/aufgabe.html">Tabelle (Mit anderen Sachen)</a></li>
<li class="li-abstand"><a href="">Stundenplan</a></li>
<li class="li-abstand"><a href="https://search.brave.com">Brave</a></li>
<li class="li-abstand"><a href="https://www.wvss-mannheim.de/">WVSS Mannheim</a></li>
<li class="li-abstand"><a href="https://leagueoflegends.com">League of Legends</a></li>
<li class="li-abstand text-bold"><a href="https://leagueoflegends.com">League of Legends</a></li>
</ul>
</body>
</html>

98
komp/stundenplan.html Normal file
View File

@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
border: 1px solid black;
background-color: aliceblue;
}
</style>
</head>
<body>
<table >
<tr>
<th style="background-color: aliceblue;">Tag -><br> Stunde\/</th> <!-- STUNDE -->
<th style="background-color: aliceblue;">Mo</th>
<th style="background-color: aliceblue;">Di</th>
<th style="background-color: aliceblue;">Mi</th>
<th style="background-color: aliceblue;">Do</th>
<th style="background-color: aliceblue;">Fr</th>
</tr>
<tr>
<th style="background-color: aliceblue;">1</th> <!-- STUNDE -->
<th>-----</th> <!-- MONTAG-->
<th style="background-color: blueviolet;">M-FHR</th> <!-- DIENSTAG-->
<th>------</th> <!-- MITTWOCH-->
<th style="background-color: orange;">KOM</th> <!-- DONNERSTAG-->
<th style="background-color: orange;">GK-WP</th> <!-- FREITAG-->
</tr>
<tr>
<th style="background-color: aliceblue;">2</th>
<th>-----</th>
<th style="background-color: orange;">KOM</th>
<th style="background-color: orange;">E</th>
<th style="background-color: orange;">KOM</th>
<th style="background-color: orange;">GK-WP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">3</th>
<th>-----</th>
<th style="background-color: orange;">KOM</th>
<th style="background-color: orange;">AM-WP</th>
<th style="background-color: orange;">PROG</th>
<th style="background-color: orange;">KOMP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">4</th>
<th>REL</th>
<th>INF</th>
<th>PROGP</th>
<th>PROG</th>
<th>INFP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">5</th>
<th>KOMP</th>
<th>INF</th>
<th>PROGP</th>
<th>D</th>
<th>INFP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">6</th>
<th>KOMP</th>
<th>INF</th>
<th>PROGP</th>
<th>KOMP</th>
<th>INFP</th>
</tr>
<tr>
<th style="background-color: aliceblue;">7</th>
<th>RO-WP</th>
<th>AM-WP</th>
<th>PROG</th>
<th>WI</th>
<th>------</th>
</tr>
<tr>
<th style="background-color: aliceblue;">8</th>
<th>RO-WP</th>
<th style="background-color: blueviolet;">E-FHR</th>
<th style="background-color: blueviolet;">M-FHR</th>
<th>WI</th>
<th>------</th>
</tr>
<tr>
<th style="background-color: aliceblue;">8</th>
<th style="background-color: blueviolet;">D-FHR</th>
<th>------</th>
<th style="background-color: blueviolet;">E-FHR</th>
<th style="background-color: blueviolet;">D-FHR</th>
<th>------</th>
</tr>
</table>
</body>
</html>