diff --git a/README.md b/README.md
index 6db9d74..ff6412e 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,37 @@
-# html05
\ No newline at end of file
+## Welcome to GitHub Pages
+
+You can use the [editor on GitHub](https://github.com/KenazBarks/html05/edit/master/README.md) to maintain and preview the content for your website in Markdown files.
+
+Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files.
+
+### Markdown
+
+Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for
+
+```markdown
+Syntax highlighted code block
+
+# Header 1
+## Header 2
+### Header 3
+
+- Bulleted
+- List
+
+1. Numbered
+2. List
+
+**Bold** and _Italic_ and `Code` text
+
+[Link](url) and 
+```
+
+For more details see [GitHub Flavored Markdown](https://guides.github.com/features/mastering-markdown/).
+
+### Jekyll Themes
+
+Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/KenazBarks/html05/settings). The name of this theme is saved in the Jekyll `_config.yml` configuration file.
+
+### Support or Contact
+
+Having trouble with Pages? Check out our [documentation](https://help.github.com/categories/github-pages-basics/) or [contact support](https://github.com/contact) and we’ll help you sort it out.
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..c419263
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1 @@
+theme: jekyll-theme-cayman
\ No newline at end of file
diff --git a/case1/gp_cover_txt.html b/case1/gp_cover.html
similarity index 88%
rename from case1/gp_cover_txt.html
rename to case1/gp_cover.html
index 2ced369..89ecadf 100644
--- a/case1/gp_cover_txt.html
+++ b/case1/gp_cover.html
@@ -7,15 +7,19 @@
Case Problem 1
Ghost of the Deep Cover Page
- Author:
- Date:
+ Author: Kenaz & Khanh
+ Date: 11/8/18
Filename: gp_cover.html
-->
Ghost of the Deep Cover Page
-
+
+
+
+
diff --git a/case1/gp_layout.css b/case1/gp_layout.css
new file mode 100644
index 0000000..26cba73
--- /dev/null
+++ b/case1/gp_layout.css
@@ -0,0 +1,105 @@
+@charset "utf-8";
+
+/*
+ New Perspectives on HTML5 and CSS3, 7th Edition
+ Tutorial 5
+ Case Problem 1
+
+ Author:
+ Date:
+
+ Filename: gp_layout.css
+
+ This file contains the layout styles and media
+ queries used with sample pages from the Golden
+ Pulps website.
+
+*/
+
+
+/* Import Basic Design Styles Used on All Screens */
+
+@import url("gp_designs.css");
+
+/* Flex Layout Styles */
+body {
+ display: -webkit-box;
+ display: -moz-box;
+ display: -ms-flexbox;
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-flow: row wrap;
+ flex-flow: row wrap;
+}
+
+section#sheet {
+ -webkit-flex: 3 1 301px;
+ flex: 3 1 301px;
+}
+
+article {
+ -webkit-flex: 1 3 180px;
+ flex: 1 3 180px;
+}
+
+/* ============================================
+ Mobile Devices: 0 - 480 pixels
+ ============================================
+*/
+@media only screen and (max-width: 480px) {
+
+img.panel {
+ width: 100%;
+}
+
+nav.horizontal {
+ -webkit-order: 99;
+ order: 99;
+}
+body > footer {
+ -webkit-order: 100;
+ order: 100;
+}
+
+
+}
+/* ===================================================
+ Tablet and Desktop Devices: Greater than 480 pixels
+ ===================================================
+*/
+@media only screen and (min-width: 481px) {
+
+nav.horizontal ul {
+ display: -webkit-flex;
+ display: flex;
+ -webkit-flex-flow: row nowrap;
+ flex-flow: row nowrap;
+ height: 40px;
+}
+
+nav.horizontal ul li{
+ -webkit-flex: 1 1 auto;
+ flex: 1 1 auto;
+}
+
+img.size1 {
+ width:100%;
+}
+
+img.size2 {
+ width:60%;
+}
+
+img.size3 {
+ width:40%;
+}
+
+img.size4 {
+ width:30%;
+}
+
+
+
+
+
+}
diff --git a/case1/gp_layout_txt.css b/case1/gp_layout_txt.css
deleted file mode 100644
index 00370c1..0000000
--- a/case1/gp_layout_txt.css
+++ /dev/null
@@ -1,42 +0,0 @@
-@charset "utf-8";
-
-/*
- New Perspectives on HTML5 and CSS3, 7th Edition
- Tutorial 5
- Case Problem 1
-
- Author:
- Date:
-
- Filename: gp_layout.css
-
- This file contains the layout styles and media
- queries used with sample pages from the Golden
- Pulps website.
-
-*/
-
-
-/* Import Basic Design Styles Used on All Screens */
-
-@import url("gp_designs.css");
-
-/* Flex Layout Styles */
-
-
-
-
-
-/* ============================================
- Mobile Devices: 0 - 480 pixels
- ============================================
-*/
-
-
-
-
-/* ===================================================
- Tablet and Desktop Devices: Greater than 480 pixels
- ===================================================
-*/
-
diff --git a/case1/gp_page1_txt.html b/case1/gp_page1.html
similarity index 90%
rename from case1/gp_page1_txt.html
rename to case1/gp_page1.html
index 846288b..f8dac7a 100644
--- a/case1/gp_page1_txt.html
+++ b/case1/gp_page1.html
@@ -15,6 +15,11 @@
Ghost of the Deep Page 1
+
+
+
+
diff --git a/case1/gp_page2_txt.html b/case1/gp_page2.html
similarity index 92%
rename from case1/gp_page2_txt.html
rename to case1/gp_page2.html
index fc80c51..59e095a 100644
--- a/case1/gp_page2_txt.html
+++ b/case1/gp_page2.html
@@ -15,6 +15,11 @@
Ghost of the Deep Page 2
+
+
+
+
diff --git a/case1/gp_page3_txt.html b/case1/gp_page3.html
similarity index 92%
rename from case1/gp_page3_txt.html
rename to case1/gp_page3.html
index 06f2365..b7aa3de 100644
--- a/case1/gp_page3_txt.html
+++ b/case1/gp_page3.html
@@ -15,6 +15,11 @@
Ghost of the Deep Page 3
+
+
+
+
diff --git a/case1/gp_print_txt.css b/case1/gp_print.css
similarity index 56%
rename from case1/gp_print_txt.css
rename to case1/gp_print.css
index f8fc0d4..82002d1 100644
--- a/case1/gp_print_txt.css
+++ b/case1/gp_print.css
@@ -17,9 +17,33 @@
/* Hidden Objects */
-
-
-
+nav, footer, article {
+ display: none;
+}
+
+section#sheet {
+ width: 6in;
+ margin-top: 0in;
+ margin-bottom: 0in;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+img.size1 {
+ width: 5in;
+}
+
+img.size2 {
+ width: 3in;
+}
+
+img.size3 {
+ width: 2in;
+}
+
+img.size4 {
+ width: 1.5in;
+}
diff --git a/case2/wc_hole01.html b/case2/wc_hole01.html
index 293f7a9..5b0a8d7 100644
--- a/case2/wc_hole01.html
+++ b/case2/wc_hole01.html
@@ -124,4 +124,4 @@