From 0d2bcd090337428b5b53bea49a474fe1a8c5376f Mon Sep 17 00:00:00 2001 From: NetMan <13informatyka14@gmail.com> Date: Thu, 28 Dec 2023 18:37:31 +0100 Subject: [PATCH] Completed exercise 01 Added style.css - external, style tag - internal, style value - inline --- 01-css-methods/index.html | 10 +++++++++- 01-css-methods/style.css | 7 +++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 01-css-methods/style.css diff --git a/01-css-methods/index.html b/01-css-methods/index.html index effe3cc..aedefe5 100644 --- a/01-css-methods/index.html +++ b/01-css-methods/index.html @@ -5,10 +5,18 @@ Methods for Adding CSS + +
Style me via the external method!

I would like to be styled with the internal method, please.

- + \ No newline at end of file diff --git a/01-css-methods/style.css b/01-css-methods/style.css new file mode 100644 index 0000000..b29d177 --- /dev/null +++ b/01-css-methods/style.css @@ -0,0 +1,7 @@ +div { + background: red; + color: white; + font-size: 32px; + text-align: center; + font-weight: bold; +} \ No newline at end of file