diff --git a/Wk5and6LabAnswerSheetWeb.docx b/Wk5and6LabAnswerSheetWeb.docx
new file mode 100644
index 0000000000000000000000000000000000000000..f0d3b302c89732ae09b8a11b633785ace4b3355a
Binary files /dev/null and b/Wk5and6LabAnswerSheetWeb.docx differ
diff --git a/labAnswers.md b/labAnswers.md
new file mode 100644
index 0000000000000000000000000000000000000000..a003790c87f9380f17be4743217bd226b93736cb
--- /dev/null
+++ b/labAnswers.md
@@ -0,0 +1,52 @@
+# Week 5/6 – HTML, JavaScript, and Websites
+
+Lab Answer Sheet
+
+Due 11:59 pm November 4, 2019
+
+Lab Section #: 066
+
+Student Full Names:
+
+Gavin Bromberg
+DeAngelo Buxton
+
+Week 5
+
+1.
+  1.         Which option did your team choose? Why?

+  2.         Add the link to the repository for this project:
                git@gitlab.cci.drexel.edu:trp74/CI101Week56Lab.git
+  3.         What did you find inside the two folders?
                logos and nodes module

+  4.         HTML Edits
+  5.         Find the comment that says question 4a. Add a screenshot below, or just paste the code including the tags.
+
+1.
+  1.         Find the comment for question 4b. Add a screenshot below, or just paste the code including the  tags.
+
+1.
+  1.         Find question 4c and add a value to the src attribute (currently #). Which logo did you choose, and why? Also, paste the edited line of code here.
+
+        cci-1.jpg, because I thought the design was nice.
+
+        <img src=&quot;cci-1.jpg&quot;>
+
+1.
+  1.         Find question 4d and add the relative address of stylesheet.css to the href of the link tag. (hint, unlike the images, stylesheet.css is in the same folder as index.html) Paste the edited tag below. Reload the page in the browser. What changed, if anything?
+  2.
+  3. \&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot;\&gt;
+  4. We saw the stylesheet.css in the browser
+  5.
+  6.         Add a new row to the table, test it then paste your new line of code below.

+  7.         CSS Edits
+  8.         In stylesheet.css, change the background-color of #header-row. Reload the html page in your browser, what happened? Paste the changed CSS rule here.

+  9.         Now change the background-color of .rows? How were the two results different? Based on what you&#39;ve learned about id and class, what do you think the # and . mean?
+
+1.
+  1.         Find question 5c in stylesheet.css. Notice how the button has a margin of 5px and a padding of 5px. What happens if you change the margin? The padding?
+
+1.
+  1.         Find question 5d in stylesheet.css. add a background-image to the body element then paste the rule here.
+
+1.
+  1.         A Little JavaScript
+  2.         Find question 6 in index.html. Change the content of the onclick from # to goToCCI(). What happens when you press the button now? Look in index.js, can you find what&#39;s causing this change?
diff --git a/stylesheet.css b/stylesheet.css
index 2525ed6d44fe409264cd899e747efe1db11002c1..d5a1a4463f9b5dc43f08db35d5a5b940839346f9 100644
--- a/stylesheet.css
+++ b/stylesheet.css
@@ -7,6 +7,7 @@ html{
 body {
     text-align: center;
     /*Question 5d*/
+    background-image: url("logos/cci-1.jpg")
 }
 
 table {
@@ -20,16 +21,16 @@ td {
 
 /*Question 5a*/
 #header-row {
-    background-color: white;
+    background-color: red;
 }
 
 /*Question 5b*/
 .rows {
-    background-color: white;
-}
+    background-color: blue;
+
 
 /*Question 5c*/
 button {
-    margin: 5px;    
+    margin: 5px;
     padding: 5px;
-}
\ No newline at end of file
+}