diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..aeb8f67 --- /dev/null +++ b/css/style.css @@ -0,0 +1,29 @@ +body{ + font-family: helvetica, Arial, sans-serif; + font-size: 1.2rem; +} +.wrapper{ + max-width: 960px; + margin:0 auto; +} +header, footer{ + height: 160px; + background: silver; + clear: both; +} +nav{ + height: 30px; + background: tomato; +} +#hauptbereich, #seitenbereich{ + min-height: 500px; + background: #acacac; +} +#hauptbereich{ + width: 60%; + float: left; +} +#seitenbereich{ + width: 30%; + float: right; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..65a38ff --- /dev/null +++ b/index.html @@ -0,0 +1,31 @@ + + + + + + + Strukturieren / Gruppieren + + + + +
+
+

kopfbereich

+
+ +
+

da ist der Hauptbereich

+
+
+

das ist der seitenbereich

+
+ +
+ + + \ No newline at end of file