diff --git a/foundations/intro-to-css/01-css-methods/index.html b/foundations/intro-to-css/01-css-methods/index.html index effe3cc3db01..ed60b0988b74 100644 --- a/foundations/intro-to-css/01-css-methods/index.html +++ b/foundations/intro-to-css/01-css-methods/index.html @@ -4,11 +4,19 @@ + 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/foundations/intro-to-css/01-css-methods/style.css b/foundations/intro-to-css/01-css-methods/style.css new file mode 100644 index 000000000000..3910d94fa594 --- /dev/null +++ b/foundations/intro-to-css/01-css-methods/style.css @@ -0,0 +1,11 @@ +/* styles.css */ + +div { + background-color: red; + color: white; + font-size: 32px; + font-weight: bold; + text-align: center; + +} +