diff --git a/unit_01/w03d02/homework/README.md b/unit_01/w03d02/homework/README.md index 9d4212f..00ba86d 100644 --- a/unit_01/w03d02/homework/README.md +++ b/unit_01/w03d02/homework/README.md @@ -76,7 +76,7 @@ The commit message should read:
"Commit 3: Initial HTML elements are created for the calculator"
-## Fourth Step: Write your initial CSS to make a rough copy of what you want it to look like. +## Fourth Step: Write your initial CSS to make a rough copy of what you want your calculator page to look like. 1. For now, don't spend too much time on your CSS this. You will come back to it, but just get everything positioned roughly where you want (ex: make the elements that will be your buttons on the calculator large enough so that you can see a number displayed). 2. Make sure all of the interactive parts of the website are visible. This way, as you're building out the functions in your javascript file, you'll be able to test your code. @@ -100,6 +100,12 @@ User stories are a great way to break down exactly what needs to be done. 5. Test, fix, retest, fix, retest,... 6. Look back on code written and think about better ways to implement it. Maybe somethings not working at all, how can we restructure the code we have so that it does? +**Commit 4**
+
+The commit message should read:
+"Commit 4: Initial CSS has been created for the calculator" +
+ ### Things to think about when thinking of the solution 1. In this problem, state is very important. Try to think about how your going to store the state of the calculator. What kind of information do you need to track?