+
+
+
+
les cerries de salomon
+

+
+
+
+
+
kathrine the shrew
+

+
+
+
+
+
autre choix
+

+
+
+
+
+
the dog and the bone
+

+
+
+
+
+
six tales from shakesphere
+

+
+
+
+
+
fairy tale story
+

+
+
+
+
+
she stoops to conquer
+

+
+
+
+
+
shylock
+

+
+
+
+
+
the owl and the pussycat
+

+
+
+
+
+
the quick brown fox
+

+
+
+
+
+
+
+
+
diff --git a/Week1/homework/style.css b/Week1/homework/style.css
index bab13ec23..4aabb0c0b 100644
--- a/Week1/homework/style.css
+++ b/Week1/homework/style.css
@@ -1 +1,24 @@
-/* add your styling here */
\ No newline at end of file
+/* add your styling here */
+
+.mainContainer{ display: flex;
+ flex-direction: column;
+}
+
+
+ .itemsContainer{
+ display: flex;
+ flex-wrap: wrap;
+ margin: 5px;
+ font-size: 15px;
+
+}
+.item{
+ margin: 10px;
+ width: 300px;
+
+}
+#title{
+ text-align: center;
+ font-family: 'Times New Roman', Times, serif;
+ font-size: 15px;
+}
diff --git a/Week2/homework/maartjes-work.js b/Week2/homework/maartjes-work.js
index 49772eb44..118db6067 100644
--- a/Week2/homework/maartjes-work.js
+++ b/Week2/homework/maartjes-work.js
@@ -46,7 +46,14 @@ const maartjesTasks = monday.concat(tuesday);
const maartjesHourlyRate = 20;
function computeEarnings(tasks, hourlyRate) {
- // Replace this comment and the next line with your code
+ // create variables of duration and task for monday
+
+let duration = ['180', '120','20','200']
+let task = [ 'Write a summary HTML/CSS','Some web development','Fix homework for class10','Talk to a lot of people']
+ }
+});
+
+
console.log(tasks, hourlyRate);
}
diff --git a/Week2/homework/map-filter.js b/Week2/homework/map-filter.js
index c8e8a88c1..44d27187b 100644
--- a/Week2/homework/map-filter.js
+++ b/Week2/homework/map-filter.js
@@ -1,7 +1,8 @@
'use strict';
function doubleOddNumbers(numbers) {
- // Replace this comment and the next line with your code
+ // call function
+ doubleOddNumber(numbers)
console.log(numbers);
}