diff options
Diffstat (limited to 'Aufgabe01')
| -rw-r--r-- | Aufgabe01/index.html | 59 | ||||
| -rw-r--r-- | Aufgabe01/test.php | 3 |
2 files changed, 62 insertions, 0 deletions
diff --git a/Aufgabe01/index.html b/Aufgabe01/index.html new file mode 100644 index 0000000..47e28a7 --- /dev/null +++ b/Aufgabe01/index.html @@ -0,0 +1,59 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Meine Hallo Welt</title> +<style type="text/css"> +<!-- +td { + padding: 12px; +} +--> +</style> +</head> +<body> +<table border="1" contenteditable="true"> + <tr contenteditable="false"> + <th>Montag</th> + <th>Dienstag</th> + <th>Mittwoch</th> + <th>Donnerstag</th> + <th>Freitag</th> + <th>Samstag</th> + </tr> + <tr> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + </tr> + <tr> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + </tr> + <tr> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + </tr> + <tr> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + <td>Row 1: Col 1</td> + <td>Row 1: Col 2</td> + </tr> +</table> + +</body> +</html>
\ No newline at end of file diff --git a/Aufgabe01/test.php b/Aufgabe01/test.php new file mode 100644 index 0000000..968c8df --- /dev/null +++ b/Aufgabe01/test.php @@ -0,0 +1,3 @@ +<?php +phpinfo(); +?>
\ No newline at end of file |
