- KOMP Aufgabe
- KOMP Ordner erstellt - Genrell - Veränderung von älteren ProgP aufgabe
This commit is contained in:
56
komp/listen.html
Normal file
56
komp/listen.html
Normal file
@@ -0,0 +1,56 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
<!-- Datum 24-10-11 -->
|
||||
<style>
|
||||
* {
|
||||
border: 1px solid gray;
|
||||
font-family: sans-serif;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
h1 {
|
||||
color: lawngreen;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1 style="text-align: center;">Überschrift 1</h1>
|
||||
|
||||
<p>Hallo Welt!</p>
|
||||
<ul>
|
||||
<li><a href="homepage.html">Homepage</a></li>
|
||||
<li><a href="notenberechnung.html">Notenberechnung</a></li>
|
||||
<li><a href="links.html">Links</a></li>
|
||||
</ul>
|
||||
<h1 style="color: red;">Lieblingsgerichte</h1>
|
||||
<ol>
|
||||
<li>Linsendal</li>
|
||||
<li>Pizza</li>
|
||||
<li>Döner</li>
|
||||
</ol>
|
||||
|
||||
<table>
|
||||
<tr> <!-- 1. ROW-->
|
||||
<td>1</td>
|
||||
<td>2</td>
|
||||
<td>3</td>
|
||||
</tr>
|
||||
<tr><!-- 2. ROW-->
|
||||
<td>4</td>
|
||||
<td>5</td>
|
||||
<td>6</td>
|
||||
</tr>
|
||||
<tr> <!-- 3. ROW-->
|
||||
<td>7</td>
|
||||
<td>8</td>
|
||||
<td>9</td>
|
||||
</tr>
|
||||
</table>
|
||||
<div style="margin: 10px; padding: 20px;">
|
||||
u
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
17
komp/ueberschriften.html
Normal file
17
komp/ueberschriften.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
<!-- Datum 24-10-11 -->
|
||||
</head>
|
||||
<body>
|
||||
<h1>Überschrift 1</h1>
|
||||
<h2>Überschrift 2</h2>
|
||||
<h3>Überschrift 3</h3>
|
||||
<h4>Überschrift 4</h4>
|
||||
<h5>Überschrift 5</h5>
|
||||
<h6>Überschrift 6</h6>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user