From 21b9f0248f3257e8bca9f861c56a52aafc2fc9c2 Mon Sep 17 00:00:00 2001 From: John Woolbright Date: Tue, 26 Sep 2023 10:11:36 -0500 Subject: [PATCH 1/2] added css directory for exercises --- css/index.html | 22 ++++++++++++++++++++++ css/script.js | 1 + css/styles.css | 1 + 3 files changed, 24 insertions(+) create mode 100644 css/index.html create mode 100644 css/script.js create mode 100644 css/styles.css diff --git a/css/index.html b/css/index.html new file mode 100644 index 0000000000..69f47f9239 --- /dev/null +++ b/css/index.html @@ -0,0 +1,22 @@ + + + + + + CSS Exercises + + + + + +

My Very Cool Web Page

+

Why this Website is Very Cool

+
    +
  1. I made it!
  2. +
  3. This website is colorful!
  4. +
+

Why I love Web Development

+

Web Development is a very cool skill that I love learning!

+

I love making websites because all I have to do is reload the page to see the changes I have made!

+ + diff --git a/css/script.js b/css/script.js new file mode 100644 index 0000000000..3bbac89f48 --- /dev/null +++ b/css/script.js @@ -0,0 +1 @@ +// You do not need to do anything with script.js right now! Later, we will learn how to add JavaScript to websites! diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000000..3b88bed453 --- /dev/null +++ b/css/styles.css @@ -0,0 +1 @@ +/* Start adding your styling below! */ From 7ddffa25ad2cab83a8679c237ca3cc437889720c Mon Sep 17 00:00:00 2001 From: John Woolbright Date: Tue, 26 Sep 2023 10:12:11 -0500 Subject: [PATCH 2/2] moved files into exercises folder --- css/{ => exercises}/index.html | 0 css/{ => exercises}/script.js | 0 css/{ => exercises}/styles.css | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename css/{ => exercises}/index.html (100%) rename css/{ => exercises}/script.js (100%) rename css/{ => exercises}/styles.css (100%) diff --git a/css/index.html b/css/exercises/index.html similarity index 100% rename from css/index.html rename to css/exercises/index.html diff --git a/css/script.js b/css/exercises/script.js similarity index 100% rename from css/script.js rename to css/exercises/script.js diff --git a/css/styles.css b/css/exercises/styles.css similarity index 100% rename from css/styles.css rename to css/exercises/styles.css