diff --git a/README.md b/README.md
index dc5314a3a1..c4d26a7468 100644
--- a/README.md
+++ b/README.md
@@ -36,14 +36,24 @@ Edit this document to include your answers after each question. Make sure to lea
1. If you were to describe semantic HTML to the next cohort of students, what would you say?
+Semantic HTML is using the tools of HTML to mark and separate various pieces of the page into different sections for styling and accessibility.
+
2. What are the 4 areas of the box model?
+The 4 areas of the Box Model are: Content, Padding, Border, and Margin.
+
3. While using flexbox, what axis does the following property work on: ```align-items: center```?
+ The property ```align-items:center``` works on the x, or horizontal, axis.
+
4. Explain why git is valuable to a team of developers.
+Git is valuable for file sharing amonst a team, as well as backing up previous versions if you need to remove a change you made a long time ago, or revert back to a previous version that is not broken.
+
5. Define mobile-first design in your own words.
+Mobile-first design is when you begin by styling items to work best on a device that is more narrow than a desktop (320 pixels will display well on most devices) first, and adjust the styling to fit a wider screen later on.
+
You are expected to be able to answer all these questions. Your responses contribute to your Sprint Challenge grade. Skipping this section *will* prevent you from passing this challenge.
## Instructions
diff --git a/about.html b/about.html
new file mode 100644
index 0000000000..83b9ce1d7c
--- /dev/null
+++ b/about.html
@@ -0,0 +1,16 @@
+
+
+
+
+
+ About
+
+
+
+
+
+
+
About
+
+
+
\ No newline at end of file
diff --git a/contact.html b/contact.html
new file mode 100644
index 0000000000..d2ee0693a2
--- /dev/null
+++ b/contact.html
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+ Sprint Challenge - Home
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/index.html b/index.html
index d32d8ad25c..972342c821 100644
--- a/index.html
+++ b/index.html
@@ -3,17 +3,27 @@
-
Sprint Challenge - Home
-
+
-