diff options
Diffstat (limited to 'contents/projekte/webdesign.php')
-rw-r--r-- | contents/projekte/webdesign.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/contents/projekte/webdesign.php b/contents/projekte/webdesign.php new file mode 100644 index 0000000..9ae9d7e --- /dev/null +++ b/contents/projekte/webdesign.php @@ -0,0 +1,26 @@ +<?php + $author = 'Emily'; + $pathToRoot = '../../'; +?> +<?php + include($pathToRoot . 'includes/firstinclude.inc.php'); + include($pathToRoot . 'includes/header.inc.php'); + include($pathToRoot . 'includes/mainmenu.inc.php'); + + include($pathToRoot . 'sidebars/projekte/main.inc.php'); +?> + +<div id="inhalt"> + <h2> + Webdesign + </h2> + <p> + Das Produkt dieser Lerneinheit ist die Seite, die ihr vor euch seht! + Wir haben html, css und php behandelt. + </p> +</div> + +<?php + include($pathToRoot . 'includes/footer.inc.php'); + include($pathToRoot . 'includes/lastinclude.inc.php'); +?> |