From 0ea3d1b1f2def74e6c1e8e29e5674294a27a870c Mon Sep 17 00:00:00 2001 From: Tobias Hillmer Date: Sat, 10 Aug 2019 15:54:59 +0200 Subject: [PATCH] my version of git course --- .gitignore | 3 +++ index.html | 32 ++++++++++++++++++++++++-------- style.css | 17 +++++++++++++++++ 3 files changed, 44 insertions(+), 8 deletions(-) create mode 100644 .gitignore create mode 100644 style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..72ace0f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# file: ~/.gitignore_global +.DS_Store +.idea \ No newline at end of file diff --git a/index.html b/index.html index d0c0af7..f1a1972 100644 --- a/index.html +++ b/index.html @@ -1,9 +1,25 @@ - - Title - - -

Headline

-

Some text

- - \ No newline at end of file + + + Ich bin die Index.html + + + + + + + +
+

Box1

+

+ ich bin der content +

+
+
+

Box2

+ +
+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..1fed1e8 --- /dev/null +++ b/style.css @@ -0,0 +1,17 @@ +.git { + background-color: red; +} + +.box1 { + background-color: green; + color: #757575; +} + +.box2 { + + background-color: blue; +} + +.box1, .box2 { + width: 50%; +} \ No newline at end of file