diff --git a/foundations/intro-to-css/01-css-methods/index.html b/foundations/intro-to-css/01-css-methods/index.html index effe3cc3db01..fbaafbebf475 100644 --- a/foundations/intro-to-css/01-css-methods/index.html +++ b/foundations/intro-to-css/01-css-methods/index.html @@ -1,14 +1,18 @@ - - - - - Methods for Adding CSS - - -
Style me via the external method!
-

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

- - + + + + + + + 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..e8c9dfd791f8 --- /dev/null +++ b/foundations/intro-to-css/01-css-methods/style.css @@ -0,0 +1,15 @@ +div{ + color:white; + background-color:red; +} + +p{ + background-color: green; + color:white + + +} +button{ + background-color: orange; + border:none; +}