diff --git a/README.md b/README.md
index 7e90c241d..9fc255af5 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-> If you are following the HackYourFuture curriculum we recommend you to start with module 1: [HTML/CSS/GIT](https://github.com/HackYourFuture/HTML-CSS). To get a complete overview of the HackYourFuture curriculum first, click [here](https://github.com/HackYourFuture/curriculum).
+> If you are following the curriculum we recommend you to start with module 1: [HTML/CSS/GIT](https://github.com/SocialHackersCodeSchool/HTML-CSS). To get a complete overview of the HackYourFuture curriculum first, click [here](https://github.com/SocialHackersCodeSchool/curriculum).
-> Please help us improve and share your feedback! If you find better tutorials or links, please share them by [opening a pull request](https://github.com/HackYourFuture/JavaScript2/pulls).
+> Please help us improve and share your feedback! If you find better tutorials or links, please share them by [opening a pull request](https://github.com/SocialHackersCodeSchool/JavaScript2/pulls).
# Module #3 - JavaScript 2: DOM Manipulation (Frontend)
@@ -37,8 +37,8 @@ If you have any questions or if something is not entirely clear ¯\\\_(ツ)\_/¯
| Week | Topic | Reading Materials | Homework | Lesson Plan |
| ---- | -------------------------------------------------------------------- | ------------------------------ | ------------------------------- | -------------------------------------- |
| 1. | Document-Object Model (DOM), DOM manipulation | [Reading W1](/Week1/README.md) | [Homework W1](/Week1/MAKEME.md) | [Lesson Plan W1](/Week1/LESSONPLAN.md) |
-| 2. | Synchronous vs. asynchronous, Event Loop, Callbacks, Array Functions | [Reading W2](/Week2/README.md) | [Homework W2](/Week2/MAKEME.md) | [Lesson Plan W2](/Week1/LESSONPLAN.md) |
-| 3. | Scope, Hoisting, Closures, Thinking like a programmer II | [Reading W3](/Week3/README.md) | [Homework W3](/Week3/MAKEME.md) | [Lesson Plan W3](/Week1/LESSONPLAN.md) |
+| 2. | Synchronous vs. asynchronous, Event Loop, Callbacks, Array Functions | [Reading W2](/Week2/README.md) | [Homework W2](/Week2/MAKEME.md) | [Lesson Plan W2](/Week2/LESSONPLAN.md) |
+| 3. | Scope, Hoisting, Closures, Thinking like a programmer II | [Reading W3](/Week3/README.md) | [Homework W3](/Week3/MAKEME.md) | [Lesson Plan W3](/Week3/LESSONPLAN.md) |
| 4. | Test | [Details](/test/README.md) | - | - |
## Finished?
@@ -47,6 +47,8 @@ Did you finish the module? Good job! You're doing great!
If you feel ready for the next challenge, click [here](https://www.github.com/HackYourFuture/JavaScript3) to go to JavaScript3!
-_The HackYourFuture curriculum is subject to CC BY copyright. This means you can freely use our materials, but just make sure to give us credit for it :)_
+## Credit:
+This curriculum is developed by HackYourFuture, modifications, and changes can be found in this Fork. (edited)
+

This work is licensed under a Creative Commons Attribution 4.0 International License.
diff --git a/Week1/js-exercises/aboutMe/2aboutMe.html b/Week1/js-exercises/aboutMe/2aboutMe.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/Week1/js-exercises/aboutMe/2aboutMe.js b/Week1/js-exercises/aboutMe/2aboutMe.js
new file mode 100644
index 000000000..e69de29bb
diff --git a/Week1/js-exercises/bookList/1bookList.html b/Week1/js-exercises/bookList/1bookList.html
new file mode 100644
index 000000000..07240ea7b
--- /dev/null
+++ b/Week1/js-exercises/bookList/1bookList.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Week1/js-exercises/logoHijack/3logoHijack.js b/Week1/js-exercises/logoHijack/3logoHijack.js
new file mode 100644
index 000000000..ddd02a133
--- /dev/null
+++ b/Week1/js-exercises/logoHijack/3logoHijack.js
@@ -0,0 +1,5 @@
+function hijackGoogleLogo(){
+var logo = document.getElementById('googlelogo');
+logo.src = 'https://www.hackyourfuture.dk/static/logo-dark.svg';
+}
+hijackGoogleLogo();
\ No newline at end of file
diff --git a/Week1/js-exercises/theCatWalk/5theCatWalk.html b/Week1/js-exercises/theCatWalk/5theCatWalk.html
new file mode 100644
index 000000000..e69de29bb
diff --git a/Week1/js-exercises/theCatWalk/5theCatWalk.js b/Week1/js-exercises/theCatWalk/5theCatWalk.js
new file mode 100644
index 000000000..e69de29bb
diff --git a/Week1/js-exercises/whatistheTime/4whatistheTime.html b/Week1/js-exercises/whatistheTime/4whatistheTime.html
new file mode 100644
index 000000000..68fa4e4ad
--- /dev/null
+++ b/Week1/js-exercises/whatistheTime/4whatistheTime.html
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+