diff --git a/Lesson02-HTML-CSS/homework/homework.html b/Lesson02-HTML-CSS/homework/homework.html
index b722c6acc..fae3f60cd 100644
--- a/Lesson02-HTML-CSS/homework/homework.html
+++ b/Lesson02-HTML-CSS/homework/homework.html
@@ -1 +1,32 @@
-
\ No newline at end of file
+
+
+
+
+
+
+ Matt Goff's HTML homework
+
+
+
+
+
Matt Goff
+ Lambda School
+ HTML/CSS homework
+
+
+
+
+ -
+
Item 1
+
+ -
+
Item 2
+
+
+
+
+
+
diff --git a/Lesson02-HTML-CSS/homework/styles.css b/Lesson02-HTML-CSS/homework/styles.css
new file mode 100644
index 000000000..d3fe7172c
--- /dev/null
+++ b/Lesson02-HTML-CSS/homework/styles.css
@@ -0,0 +1,32 @@
+h1 {color:red;}
+
+img {width: 40px;}
+
+body {
+ background-color: aqua;
+}
+
+div {
+ text-align: center;
+ margin: 0 auto;
+}
+
+li {
+ /* display: inline; */
+ display:table;
+ margin:0px auto 0px auto;
+}
+
+#thirdDiv {
+ height: 300px;
+ width: 300px;
+ background-color: bisque;
+ padding: 50px;
+ border: 4px;
+ border-style: solid;
+ }
+
+#spanId {
+ font-size: 18px;
+ margin: 50px;
+ }
\ No newline at end of file
diff --git a/Lesson03-CSS-Positioning/homework/homework.css b/Lesson03-CSS-Positioning/homework/homework.css
index a45394a92..b7b33a399 100644
--- a/Lesson03-CSS-Positioning/homework/homework.css
+++ b/Lesson03-CSS-Positioning/homework/homework.css
@@ -8,36 +8,57 @@ in this folder, you are in the wrong place.
/* We will start this one off for you: */
#exerciseOne {
-
+ display: block;
+ text-align: center;
}
/* Exercise Two: Positioning a Header Bar*/
/* Place code here */
-
+#exerciseTwo {
+ visibility: hidden;
+}
/* Exercise Three: */
/* Place code here */
-
+#exerciseThree {
+ position: relative;
+ top: 100px;
+ left: 200px;
+}
/* Exercise Four: */
/* Place code here */
-
+#exerciseFour {
+ position: fixed;
+ top: 0;
+ left: 0;
+}
/* Exercise Five */
/* Place code here */
-
+#exerciseFive {
+ display: flex;
+ align-items: center;
+ justify-content: space-evenly;
+ flex-direction: row-reverse;
+}
/* Exercise Six */
-
#exerciseSeven {
display: flex;
+ align-items: center;
+ justify-content: space-evenly;
+}
+
+#itemOne {
+ align-items: center;
}
diff --git a/newfile.js b/newfile.js
new file mode 100644
index 000000000..e69de29bb