diff --git a/css/flex.css b/css/flex.css
new file mode 100644
index 0000000..5ae9261
--- /dev/null
+++ b/css/flex.css
@@ -0,0 +1,17 @@
+.bigbox{
+ width: 100%;
+ border: 2px solid yellowgreen;
+ padding: 1em 1em 0 1em;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.box{
+ width: 150px;
+ height: 150px;
+ margin: 0 1em 1em ;
+ background-color: yellowgreen;
+}
+.grow{
+ flex-grow: 1;
+}
\ No newline at end of file
diff --git a/css/form.css b/css/form.css
new file mode 100644
index 0000000..c4834e7
--- /dev/null
+++ b/css/form.css
@@ -0,0 +1,18 @@
+.contact{
+ margin: 2rem auto;
+}
+fieldset{
+ padding: 0;
+ border: none;
+}
+legend{
+ font-weight: 900;
+ margin: 2rem 0;
+}
+label{
+ display: inline-block;
+ width: 50%;
+}
+label{
+margin: .6rem 0;
+}
\ No newline at end of file
diff --git a/html/flex.html b/html/flex.html
new file mode 100644
index 0000000..ef8b149
--- /dev/null
+++ b/html/flex.html
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+ HTML Struktur
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+
+ Inhalt strukturieren mit Flexbox
+
+ Flex row
+
+
+
+ Die Boxen
+
+<div class="bigbox">
+ <div class="box"></div>
+ <div class="box grow"></div>
+ <div class="box"></div>
+ <div class="box"></div>
+</div>
+
+
+ & Die zentrierte Flexbox
+
+.bigbox{
+ width: 100%;
+ border: 2px solid yellowgreen;
+ padding: 1em 1em 0 1em;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+.box{
+ width: 150px;
+ height: 150px;
+ margin: 0 1em 1em ;
+ background-color: yellowgreen;
+}
+.grow{
+flex-grow: 1;
+}
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/index.html b/index.html
index 89be7f1..ed8549f 100644
--- a/index.html
+++ b/index.html
@@ -100,10 +100,10 @@