diff --git a/.gitignore b/.gitignore index 9ec611c..a26b7ac 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,8 @@ /Assignments/MP02_CalebFontenot/nbproject/private/ /Assignments/lab5_CalebFontenot/nbproject/private/ /Assignments/lab5_4_CalebFontenot/nbproject/private/ +<<<<<<< Updated upstream /Assignments/MP03_CalebFontenot/nbproject/private/ +======= +/Assignments/lab6_1_CalebFontenot/nbproject/private/ +>>>>>>> Stashed changes diff --git a/Assignments/lab6_1_CalebFontenot/.bowerrc b/Assignments/lab6_1_CalebFontenot/.bowerrc new file mode 100644 index 0000000..0ba26f2 --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "public_html/bower_components" +} diff --git a/Assignments/lab6_1_CalebFontenot/Gruntfile.js b/Assignments/lab6_1_CalebFontenot/Gruntfile.js new file mode 100644 index 0000000..496183b --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/Gruntfile.js @@ -0,0 +1,9 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/Gruntfile.js to edit this template + */ +module.exports = function (grunt) { + // Project configuration. + grunt.initConfig({ + }); +}; diff --git a/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.1_index.html b/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.1_index.html new file mode 100644 index 0000000..49e2b8a --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.1_index.html @@ -0,0 +1,103 @@ + + + +index.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab6_1_CalebFontenot/public_html/6.1/index.html
+
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <title>Coffee House</title>
+        <meta charset="utf-8">
+        <style>
+            body {
+                color: #221811;
+                font-family: Verdana, Arial, sans-serif;
+                width: 80%;
+                min-width: 750px;
+
+            }
+            header {
+                background-color: #D2B48C;
+                background-image: url(coffeelogo.jpg);
+                background-repeat: no-repeat;
+            }
+
+            h1 {
+                text-indent: 4em;
+                font-size: 4em;
+                height: 150px;
+                line-height: 220%;
+
+            }
+
+            nav {
+                font-weight: bold;
+                text-indent: 1em;
+                font-size: 2em;
+            }
+            nav a {
+                color: #804D33;
+                text-decoration: none;
+            }
+
+            #wrapper {
+                background-color: #FCEBB6;
+            }
+        </style>
+    </head>
+    <body>
+        <div id="wrapper">
+            <header>
+                <h1>Coffee House</h1>
+            </header>
+            <nav>
+                <a href="index.html">Home</a> &nbsp; 
+                <a href="menu.html">Menu</a> &nbsp; 
+                <a href="music.html">Music</a> &nbsp; 
+                <a href="jobs.html">Jobs</a>
+            </nav>
+            <main>
+                <h2>Follow the Winding Road to Coffee House</h2>
+                <h3>Coffee House features:</h3>
+                <ul>
+                    <li>Specialty Coffee and Tea</li>
+                    <li>Bagels, Muffins, and Gluten-free Pastries</li>
+                    <li>Organic Salads</li>
+                    <li>Music and Poetry Readings</li>
+                    <li>Open Mic Night</li>
+                </ul>
+                <div>
+                    12010 Garrett Bay Road<br>
+                    Ellison Bay, WI 54210<br>
+                    888-555-5555<br><br>
+                </div>
+            </main>
+            <footer>
+                Copyright &copy; Coffee House<br>
+            </footer>
+        </div>
+    </body>
+</html>
+
+
+ diff --git a/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.2_index.html b/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.2_index.html new file mode 100644 index 0000000..a5c8b2a --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.2_index.html @@ -0,0 +1,53 @@ + + + +index.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab6_1_CalebFontenot/public_html/6.2/index.html
+
+<!DOCTYPE html>
+<html lang="en">
+<head>
+<title>Examples of the Box Model</title>
+<meta charset="utf-8">
+<style>
+body { background-color: #FFFFFF;
+}
+h1 { background-color: #D1ECFF; 
+       padding-left: 60px;
+           border-bottom: 3px ridge #330000; }
+#box { background-color: #74C0FF;
+       margin-left: 60px;
+           padding: 5px 20px;
+           border-top-left-radius: 90px;
+                     border-bottom-left-radius: 90px;
+}
+</style>
+</head>
+<body>
+<h1>Examples of the Box Model</h1>
+<div id="box">HTML elements display as boxes on web pages. This div element is configured to have a blue background.</div>
+
+
+
+</body>
+</html>
+
+ diff --git a/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.3_index.html b/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.3_index.html new file mode 100644 index 0000000..afd84ff --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.3_index.html @@ -0,0 +1,87 @@ + + + +index.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab6_1_CalebFontenot/public_html/6.3/index.html
+
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <title>Lighthouse Bistro</title>
+        <meta charset="utf-8">
+        <style>
+            body {
+                background-image: url(background.jpg);
+                font-family: Arial, Verdana, sans-serif;
+            }
+            h1 {
+                background-image: url(lighthouselogo.jpg);
+                background-repeat: no-repeat;
+                height: 100px;
+                font-size: 3em;
+                padding-left: 150px;
+                padding-top: 30px;
+                border-radius: 15px;
+                background-color: #9DB3DC;
+                margin-top: 0;
+            }
+            h2 {
+                color: #000033;
+                font-family: arial, sans-serif;
+            }
+            footer {
+                font-size: .80em;
+                font-style: italic;
+            }
+            #container {
+                 background-color: #FFFFFF;
+                             padding: 2em;
+                             margin-left: auto;
+                 margin-right: auto;
+                             width: 80%;
+                             min-width: 800px;
+                 
+            }
+        </style>
+    </head>
+    <body>
+        <div id="container">
+        <header>
+            <h1>Lighthouse Bistro</h1>
+        </header>
+        <nav><a href="index.html">Home</a> &nbsp;<a href="menu.html">Menu</a> &nbsp;<a href="directions.html">Directions</a> &nbsp;<a href="contact.html">Contact</a>
+        </nav>
+        <h2>Locally Roasted Free-Trade Coffee</h2>
+        <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
+        <h2>Specialty Pastries</h2>
+        <p>Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.</p>
+        <h2>Lunchtime is Anytime</h2>
+        <p>Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables. </p>
+        <footer>
+            Copyright &copy; Your Name Here
+        </footer>
+        </div>
+    </body>
+</html>
+
+
+ diff --git a/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.4_index.html b/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.4_index.html new file mode 100644 index 0000000..10f9940 --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/Printed HTMLs/6.4_index.html @@ -0,0 +1,88 @@ + + + +index.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab6_1_CalebFontenot/public_html/6.4/index.html
+
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <title>Lighthouse Bistro</title>
+        <meta charset="utf-8">
+        <style>
+            body {
+                background-image: url(background.jpg);
+                font-family: Arial, Verdana, sans-serif;
+            }
+
+            h1 {
+                background-image: url(lighthouselogo.jpg);
+                background-color: #9DB3DC;
+                background-repeat: no-repeat;
+                height: 100px;
+                font-size: 3em;
+                padding-left: 150px;
+                padding-top: 30px;
+                border-radius: 15px;
+                margin-top: 0;
+            }
+
+            h2 {
+                color: #000033;
+                font-family: arial, sans-serif;
+            }
+            footer {
+                font-size: .80em;
+                font-style: italic;
+            }
+            #container {
+                background-color: #FFFFFF;
+                padding: 2em;
+                margin-left: auto;
+                margin-right: auto;
+                width: 80%;
+                min-width: 800px;
+            }
+        </style>
+    </head>
+    <body>
+        <div id="container">
+            <header>
+                <h1>Lighthouse Bistro</h1>
+            </header>
+            <nav><a href="index.html">Home</a> &nbsp;<a href="menu.html">Menu</a> &nbsp;<a href="directions.html">Directions</a> &nbsp;<a href="contact.html">Contact</a>
+            </nav>
+            <h2>Locally Roasted Free-Trade Coffee</h2>
+            <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.</p>
+            <h2>Specialty Pastries</h2>
+            <p>Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.</p>
+            <h2>Lunchtime is Anytime</h2>
+            <p>Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables. </p>
+            <footer>
+                Copyright &copy; Your Name Here
+            </footer>
+        </div>
+    </body>
+</html>
+
+
+ diff --git a/Assignments/lab6_1_CalebFontenot/bower.json b/Assignments/lab6_1_CalebFontenot/bower.json new file mode 100644 index 0000000..e0fe063 --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/bower.json @@ -0,0 +1,13 @@ +{ + "name": "lab6_1_CalebFontenot", + "version": "1.0.0", + "main": "path/to/main.css", + "ignore": [ + ".jshintrc", + "**/*.txt" + ], + "dependencies": { + }, + "devDependencies": { + } +} diff --git a/Assignments/lab6_1_CalebFontenot/gulpfile.js b/Assignments/lab6_1_CalebFontenot/gulpfile.js new file mode 100644 index 0000000..eccfb02 --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/gulpfile.js @@ -0,0 +1,10 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/gulpfile.js to edit this template + */ + +var gulp = require('gulp'); + +gulp.task('default', function () { + // place code for your default task here +}); diff --git a/Assignments/lab6_1_CalebFontenot/nbproject/project.properties b/Assignments/lab6_1_CalebFontenot/nbproject/project.properties new file mode 100644 index 0000000..46a9fda --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/nbproject/project.properties @@ -0,0 +1,5 @@ +file.reference.lab6_1_CalebFontenot-public_html=public_html +file.reference.lab6_1_CalebFontenot-test=test +files.encoding=UTF-8 +site.root.folder=${file.reference.lab6_1_CalebFontenot-public_html} +test.folder=${file.reference.lab6_1_CalebFontenot-test} diff --git a/Assignments/lab6_1_CalebFontenot/nbproject/project.xml b/Assignments/lab6_1_CalebFontenot/nbproject/project.xml new file mode 100644 index 0000000..d4cb59a --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + lab6_1_CalebFontenot + + + diff --git a/Assignments/lab6_1_CalebFontenot/package.json b/Assignments/lab6_1_CalebFontenot/package.json new file mode 100644 index 0000000..fb7129e --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/package.json @@ -0,0 +1,8 @@ +{ + "name": "lab6_1_CalebFontenot", + "version": "1.0.0", + "keywords": ["util", "functional", "server", "client", "browser"], + "author": "caleb", + "contributors": [], + "dependencies": {} +} diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.1/coffeelogo.jpg b/Assignments/lab6_1_CalebFontenot/public_html/6.1/coffeelogo.jpg new file mode 100644 index 0000000..3c302c7 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/6.1/coffeelogo.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.1/index.html b/Assignments/lab6_1_CalebFontenot/public_html/6.1/index.html new file mode 100644 index 0000000..5e9f2ca --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/public_html/6.1/index.html @@ -0,0 +1,75 @@ + + + + Coffee House + + + + +
+
+

Coffee House

+
+ +
+

Follow the Winding Road to Coffee House

+

Coffee House features:

+ +
+ 12010 Garrett Bay Road
+ Ellison Bay, WI 54210
+ 888-555-5555

+
+
+ +
+ + diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.2/index.html b/Assignments/lab6_1_CalebFontenot/public_html/6.2/index.html new file mode 100644 index 0000000..7018db7 --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/public_html/6.2/index.html @@ -0,0 +1,27 @@ + + + +Examples of the Box Model + + + + +

Examples of the Box Model

+
HTML elements display as boxes on web pages. This div element is configured to have a blue background.
+ + + + + \ No newline at end of file diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.3/background.jpg b/Assignments/lab6_1_CalebFontenot/public_html/6.3/background.jpg new file mode 100644 index 0000000..bd76938 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/6.3/background.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.3/index.html b/Assignments/lab6_1_CalebFontenot/public_html/6.3/index.html new file mode 100644 index 0000000..a0db452 --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/public_html/6.3/index.html @@ -0,0 +1,59 @@ + + + + Lighthouse Bistro + + + + +
+
+

Lighthouse Bistro

+
+ +

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunchtime is Anytime

+

Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables.

+ +
+ + diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.3/lighthouselogo.jpg b/Assignments/lab6_1_CalebFontenot/public_html/6.3/lighthouselogo.jpg new file mode 100644 index 0000000..4db3869 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/6.3/lighthouselogo.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.4/background.jpg b/Assignments/lab6_1_CalebFontenot/public_html/6.4/background.jpg new file mode 100644 index 0000000..bd76938 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/6.4/background.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.4/index.html b/Assignments/lab6_1_CalebFontenot/public_html/6.4/index.html new file mode 100644 index 0000000..3a55027 --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/public_html/6.4/index.html @@ -0,0 +1,60 @@ + + + + Lighthouse Bistro + + + + +
+
+

Lighthouse Bistro

+
+ +

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunchtime is Anytime

+

Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables.

+ +
+ + diff --git a/Assignments/lab6_1_CalebFontenot/public_html/6.4/lighthouselogo.jpg b/Assignments/lab6_1_CalebFontenot/public_html/6.4/lighthouselogo.jpg new file mode 100644 index 0000000..4db3869 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/6.4/lighthouselogo.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/index.html b/Assignments/lab6_1_CalebFontenot/public_html/index.html new file mode 100644 index 0000000..f6f390f --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/public_html/index.html @@ -0,0 +1,15 @@ + + + + + TODO supply a title + + + + +
TODO write content
+ + diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starter2.html b/Assignments/lab6_1_CalebFontenot/public_html/starter2.html new file mode 100644 index 0000000..2a6b468 --- /dev/null +++ b/Assignments/lab6_1_CalebFontenot/public_html/starter2.html @@ -0,0 +1,34 @@ + + + +Lighthouse Bistro + + + + +
+

Lighthouse Bistro

+
+ +

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunchtime is Anytime

+

Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables.

+ + + diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starters/background.jpg b/Assignments/lab6_1_CalebFontenot/public_html/starters/background.jpg new file mode 100644 index 0000000..bd76938 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/starters/background.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starters/coffeelogo.jpg b/Assignments/lab6_1_CalebFontenot/public_html/starters/coffeelogo.jpg new file mode 100644 index 0000000..3c302c7 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/starters/coffeelogo.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starters/fall.jpg b/Assignments/lab6_1_CalebFontenot/public_html/starters/fall.jpg new file mode 100644 index 0000000..b95e481 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/starters/fall.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starters/favicon.ico b/Assignments/lab6_1_CalebFontenot/public_html/starters/favicon.ico new file mode 100644 index 0000000..302fbbe Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/starters/favicon.ico differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starters/headerbackblue.jpg b/Assignments/lab6_1_CalebFontenot/public_html/starters/headerbackblue.jpg new file mode 100644 index 0000000..6ae2660 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/starters/headerbackblue.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starters/heroback2.jpg b/Assignments/lab6_1_CalebFontenot/public_html/starters/heroback2.jpg new file mode 100644 index 0000000..b2d66e1 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/starters/heroback2.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starters/lighthouselogo.jpg b/Assignments/lab6_1_CalebFontenot/public_html/starters/lighthouselogo.jpg new file mode 100644 index 0000000..4db3869 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/starters/lighthouselogo.jpg differ diff --git a/Assignments/lab6_1_CalebFontenot/public_html/starters/sunrise.jpg b/Assignments/lab6_1_CalebFontenot/public_html/starters/sunrise.jpg new file mode 100644 index 0000000..f693eb0 Binary files /dev/null and b/Assignments/lab6_1_CalebFontenot/public_html/starters/sunrise.jpg differ diff --git a/Chapter ZIPs/chapter6/6.1/coffeelogo.jpg b/Chapter ZIPs/chapter6/6.1/coffeelogo.jpg new file mode 100644 index 0000000..3c302c7 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.1/coffeelogo.jpg differ diff --git a/Chapter ZIPs/chapter6/6.1/index.html b/Chapter ZIPs/chapter6/6.1/index.html new file mode 100644 index 0000000..761d137 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.1/index.html @@ -0,0 +1,64 @@ + + + +Coffee House + + + + +
+
+

Coffee House

+
+ +
+

Follow the Winding Road to Coffee House

+

Coffee House features:

+ +
+12010 Garrett Bay Road
+Ellison Bay, WI 54210
+888-555-5555

+
+
+ +
+ + diff --git a/Chapter ZIPs/chapter6/6.10/linear.html b/Chapter ZIPs/chapter6/6.10/linear.html new file mode 100644 index 0000000..a68c2a2 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.10/linear.html @@ -0,0 +1,22 @@ + + + +Practice with Gradients + + + + +

Linear Gradient

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+

Heading 2

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+

Heading 2

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+ + + diff --git a/Chapter ZIPs/chapter6/6.10/radial.html b/Chapter ZIPs/chapter6/6.10/radial.html new file mode 100644 index 0000000..288857e --- /dev/null +++ b/Chapter ZIPs/chapter6/6.10/radial.html @@ -0,0 +1,21 @@ + + + +Practice with Gradients + + + + +

Radial Gradient

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+

Heading 2

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+

Heading 2

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+ + + diff --git a/Chapter ZIPs/chapter6/6.2/index.html b/Chapter ZIPs/chapter6/6.2/index.html new file mode 100644 index 0000000..c05cc6c --- /dev/null +++ b/Chapter ZIPs/chapter6/6.2/index.html @@ -0,0 +1,26 @@ + + + +Examples of the Box Model + + + + +

Examples of the Box Model

+
HTML elements display as boxes on web pages. This div element is configured to have a blue background.
+ + + + + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/6.3/background.jpg b/Chapter ZIPs/chapter6/6.3/background.jpg new file mode 100644 index 0000000..bd76938 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.3/background.jpg differ diff --git a/Chapter ZIPs/chapter6/6.3/index.html b/Chapter ZIPs/chapter6/6.3/index.html new file mode 100644 index 0000000..45ecbd7 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.3/index.html @@ -0,0 +1,40 @@ + + + +Lighthouse Bistro + + + + +
+

Lighthouse Bistro

+
+ +

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunchtime is Anytime

+

Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables.

+ + + diff --git a/Chapter ZIPs/chapter6/6.3/lighthouselogo.jpg b/Chapter ZIPs/chapter6/6.3/lighthouselogo.jpg new file mode 100644 index 0000000..4db3869 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.3/lighthouselogo.jpg differ diff --git a/Chapter ZIPs/chapter6/6.4/background.jpg b/Chapter ZIPs/chapter6/6.4/background.jpg new file mode 100644 index 0000000..bd76938 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.4/background.jpg differ diff --git a/Chapter ZIPs/chapter6/6.4/index.html b/Chapter ZIPs/chapter6/6.4/index.html new file mode 100644 index 0000000..8d68f73 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.4/index.html @@ -0,0 +1,52 @@ + + + +Lighthouse Bistro + + + + +
+
+

Lighthouse Bistro

+
+ +

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunchtime is Anytime

+

Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables.

+ +
+ + diff --git a/Chapter ZIPs/chapter6/6.4/lighthouselogo.jpg b/Chapter ZIPs/chapter6/6.4/lighthouselogo.jpg new file mode 100644 index 0000000..4db3869 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.4/lighthouselogo.jpg differ diff --git a/Chapter ZIPs/chapter6/6.5/background.jpg b/Chapter ZIPs/chapter6/6.5/background.jpg new file mode 100644 index 0000000..bd76938 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.5/background.jpg differ diff --git a/Chapter ZIPs/chapter6/6.5/index.html b/Chapter ZIPs/chapter6/6.5/index.html new file mode 100644 index 0000000..475cfe8 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.5/index.html @@ -0,0 +1,58 @@ + + + +Lighthouse Bistro + + + + +
+
+

Lighthouse Bistro

+
+ +

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunchtime is Anytime

+

Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables.

+ +
+ + diff --git a/Chapter ZIPs/chapter6/6.5/lighthouselogo.jpg b/Chapter ZIPs/chapter6/6.5/lighthouselogo.jpg new file mode 100644 index 0000000..4db3869 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.5/lighthouselogo.jpg differ diff --git a/Chapter ZIPs/chapter6/6.6/headerbackblue.jpg b/Chapter ZIPs/chapter6/6.6/headerbackblue.jpg new file mode 100644 index 0000000..6ae2660 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.6/headerbackblue.jpg differ diff --git a/Chapter ZIPs/chapter6/6.6/heroback2.jpg b/Chapter ZIPs/chapter6/6.6/heroback2.jpg new file mode 100644 index 0000000..b2d66e1 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.6/heroback2.jpg differ diff --git a/Chapter ZIPs/chapter6/6.6/iefix.html b/Chapter ZIPs/chapter6/6.6/iefix.html new file mode 100644 index 0000000..db78251 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.6/iefix.html @@ -0,0 +1,80 @@ + + + + +KayakDoorCounty.net + + + +
+
+

KayakDoorCounty.net

+
+ +
+

Your next adventure is only a paddle away ....

+ +

Take a guided kayak tour while you explore the shoreline of scenic Door County.

+

Featured tours this week:

+ +
+ +
+ + diff --git a/Chapter ZIPs/chapter6/6.6/index.html b/Chapter ZIPs/chapter6/6.6/index.html new file mode 100644 index 0000000..840d1b2 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.6/index.html @@ -0,0 +1,77 @@ + + + + +KayakDoorCounty.net + + + +
+
+

KayakDoorCounty.net

+
+ +
+

Your next adventure is only a paddle away ....

+ +

Take a guided kayak tour while you explore the shoreline of scenic Door County.

+

Featured tours this week:

+ +
+ +
+ + diff --git a/Chapter ZIPs/chapter6/6.7/fall.jpg b/Chapter ZIPs/chapter6/6.7/fall.jpg new file mode 100644 index 0000000..b95e481 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.7/fall.jpg differ diff --git a/Chapter ZIPs/chapter6/6.7/index.html b/Chapter ZIPs/chapter6/6.7/index.html new file mode 100644 index 0000000..3e44eb3 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.7/index.html @@ -0,0 +1,27 @@ + + + +Fall Nature Hikes + + + + +
+

Fall Nature Hikes

+
+ + diff --git a/Chapter ZIPs/chapter6/6.8/fall.jpg b/Chapter ZIPs/chapter6/6.8/fall.jpg new file mode 100644 index 0000000..b95e481 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.8/fall.jpg differ diff --git a/Chapter ZIPs/chapter6/6.8/rgba.html b/Chapter ZIPs/chapter6/6.8/rgba.html new file mode 100644 index 0000000..f67c0f0 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.8/rgba.html @@ -0,0 +1,27 @@ + + + +Fall Nature Hikes + + + + +
+

Fall Nature Hikes

+
+ + diff --git a/Chapter ZIPs/chapter6/6.9/fall.jpg b/Chapter ZIPs/chapter6/6.9/fall.jpg new file mode 100644 index 0000000..b95e481 Binary files /dev/null and b/Chapter ZIPs/chapter6/6.9/fall.jpg differ diff --git a/Chapter ZIPs/chapter6/6.9/hsla.html b/Chapter ZIPs/chapter6/6.9/hsla.html new file mode 100644 index 0000000..232a363 --- /dev/null +++ b/Chapter ZIPs/chapter6/6.9/hsla.html @@ -0,0 +1,27 @@ + + + +Fall Nature Hikes + + + + +
+

Fall Nature Hikes

+
+ + diff --git a/Chapter ZIPs/chapter6/box.html b/Chapter ZIPs/chapter6/box.html new file mode 100644 index 0000000..ce18def --- /dev/null +++ b/Chapter ZIPs/chapter6/box.html @@ -0,0 +1,26 @@ + + + +Examples of the Box Model + + + + +

Examples of the Box Model

+
HTML elements display as boxes on web pages. This div element is configured to have a light blue background, the browser default padding (which is no padding), and a black 5 pixel border. The empty space where the page background shows through between this element and the element above is an example of the margin.
+ + + + + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/box2.html b/Chapter ZIPs/chapter6/box2.html new file mode 100644 index 0000000..2b15245 --- /dev/null +++ b/Chapter ZIPs/chapter6/box2.html @@ -0,0 +1,24 @@ + + + +Examples of the Box Model + + + + +

Examples of the Box Model

+
HTML elements display as boxes on web pages. This div element is configured to have a blue background.
+ + + + + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/box3.html b/Chapter ZIPs/chapter6/box3.html new file mode 100644 index 0000000..0308629 --- /dev/null +++ b/Chapter ZIPs/chapter6/box3.html @@ -0,0 +1,28 @@ + + + +Examples of the Box Model + + + + +

Examples of the Box Model

+
HTML elements display as boxes on web pages. This div element is configured to have a blue background.
+ + + + + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/box4.html b/Chapter ZIPs/chapter6/box4.html new file mode 100644 index 0000000..7d6275d --- /dev/null +++ b/Chapter ZIPs/chapter6/box4.html @@ -0,0 +1,28 @@ + + + +Examples of the Box Model + + + + +

Examples of the Box Model

+
HTML elements display as boxes on web pages. This div element is configured to have a blue background.
+ + + + + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/clip/index.html b/Chapter ZIPs/chapter6/clip/index.html new file mode 100644 index 0000000..1e3c90e --- /dev/null +++ b/Chapter ZIPs/chapter6/clip/index.html @@ -0,0 +1,52 @@ + + + +CSS3 background-clip + + + + +
+

Tropical Island

+

+Enjoy relaxing in the warm sunshine on your own tropical island retreat. +

+
+
+

Tropical Island

+

+Enjoy relaxing in the warm sunshine on your own tropical island retreat. +

+
+
+

Tropical Island

+

+Enjoy relaxing in the warm sunshine on your own tropical island retreat. +

+
+ + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/clip/myislandback.jpg b/Chapter ZIPs/chapter6/clip/myislandback.jpg new file mode 100644 index 0000000..a40b0e6 Binary files /dev/null and b/Chapter ZIPs/chapter6/clip/myislandback.jpg differ diff --git a/Chapter ZIPs/chapter6/lighthouse/background.jpg b/Chapter ZIPs/chapter6/lighthouse/background.jpg new file mode 100644 index 0000000..bd76938 Binary files /dev/null and b/Chapter ZIPs/chapter6/lighthouse/background.jpg differ diff --git a/Chapter ZIPs/chapter6/lighthouse/gradient.html b/Chapter ZIPs/chapter6/lighthouse/gradient.html new file mode 100644 index 0000000..6e27599 --- /dev/null +++ b/Chapter ZIPs/chapter6/lighthouse/gradient.html @@ -0,0 +1,55 @@ + + + +Lighthouse Bistro + + + + +
+

Lighthouse Bistro

+ +

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh-baked, organic pastries, including fresh-fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunchtime is Anytime

+

Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit, and vegetables.

+ +
+ + diff --git a/Chapter ZIPs/chapter6/lighthouse/lighthouselogo.jpg b/Chapter ZIPs/chapter6/lighthouse/lighthouselogo.jpg new file mode 100644 index 0000000..bcdc909 Binary files /dev/null and b/Chapter ZIPs/chapter6/lighthouse/lighthouselogo.jpg differ diff --git a/Chapter ZIPs/chapter6/origin/index.html b/Chapter ZIPs/chapter6/origin/index.html new file mode 100644 index 0000000..64fd421 --- /dev/null +++ b/Chapter ZIPs/chapter6/origin/index.html @@ -0,0 +1,53 @@ + + + +CSS3 background-origin + + + + +
+

Trillium

+

+The trillium is a spring wildflower.

+
+
+

Trillium

+

+The trillium is a spring wildflower.

+
+
+

Trillium

+

+The trillium is a spring wildflower.

+
+ + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/origin/trilliumsolo.jpg b/Chapter ZIPs/chapter6/origin/trilliumsolo.jpg new file mode 100644 index 0000000..cfaff89 Binary files /dev/null and b/Chapter ZIPs/chapter6/origin/trilliumsolo.jpg differ diff --git a/Chapter ZIPs/chapter6/size/contain.html b/Chapter ZIPs/chapter6/size/contain.html new file mode 100644 index 0000000..d13f397 --- /dev/null +++ b/Chapter ZIPs/chapter6/size/contain.html @@ -0,0 +1,30 @@ + + + +contain + + + + +
+

Tropical Island

+

+Enjoy relaxing in the warm sunshine on your own tropical island retreat. +

+Tropical Island Features: + +
+ + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/size/cover.html b/Chapter ZIPs/chapter6/size/cover.html new file mode 100644 index 0000000..f6c63be --- /dev/null +++ b/Chapter ZIPs/chapter6/size/cover.html @@ -0,0 +1,30 @@ + + + +cover + + + + +
+

Tropical Island

+

+Enjoy relaxing in the warm sunshine on your own tropical island retreat. +

+Tropical Island Features: + +
+ + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/size/myislandback.jpg b/Chapter ZIPs/chapter6/size/myislandback.jpg new file mode 100644 index 0000000..3de22c1 Binary files /dev/null and b/Chapter ZIPs/chapter6/size/myislandback.jpg differ diff --git a/Chapter ZIPs/chapter6/size/sedona.html b/Chapter ZIPs/chapter6/size/sedona.html new file mode 100644 index 0000000..a685dfb --- /dev/null +++ b/Chapter ZIPs/chapter6/size/sedona.html @@ -0,0 +1,32 @@ + + + + +CSS3 background-size + + + + +
+

Casita Sedona

+
+
+

Casita Sedona

+
+ + \ No newline at end of file diff --git a/Chapter ZIPs/chapter6/size/sedonabackground.jpg b/Chapter ZIPs/chapter6/size/sedonabackground.jpg new file mode 100644 index 0000000..401ab07 Binary files /dev/null and b/Chapter ZIPs/chapter6/size/sedonabackground.jpg differ diff --git a/Chapter ZIPs/chapter6/starter1.html b/Chapter ZIPs/chapter6/starter1.html new file mode 100644 index 0000000..264f818 --- /dev/null +++ b/Chapter ZIPs/chapter6/starter1.html @@ -0,0 +1,64 @@ + + + +Coffee House + + + + +
+
+

Coffee House

+
+ +
+

Follow the Winding Road to Coffee House

+

Coffee House features:

+ +
+12010 Garrett Bay Road
+Ellison Bay, WI 54210
+888-555-5555

+
+
+ +
+ + diff --git a/Chapter ZIPs/chapter6/starter2.html b/Chapter ZIPs/chapter6/starter2.html new file mode 100644 index 0000000..2a6b468 --- /dev/null +++ b/Chapter ZIPs/chapter6/starter2.html @@ -0,0 +1,34 @@ + + + +Lighthouse Bistro + + + + +
+

Lighthouse Bistro

+
+ +

Locally Roasted Free-Trade Coffee

+

Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.

+

Specialty Pastries

+

Enjoy a selection of our fresh baked, organic pastries, including fresh fruit muffins, scones, croissants, and cinnamon rolls.

+

Lunchtime is Anytime

+

Savor delicious wraps and sandwiches on hearty, whole grain breads with locally grown salad, fruit, and vegetables.

+ + + diff --git a/Chapter ZIPs/chapter6/starter3.html b/Chapter ZIPs/chapter6/starter3.html new file mode 100644 index 0000000..1faad30 --- /dev/null +++ b/Chapter ZIPs/chapter6/starter3.html @@ -0,0 +1,56 @@ + + + + +KayakDoorCounty.net + + + +
+

KayakDoorCounty.net

+
+ +
+

Your next adventure is only a paddle away ....

+ +

Take a guided kayak tour while you explore the shoreline of scenic Door County.

+

Featured tours this week:

+ +
+ + + diff --git a/Chapter ZIPs/chapter6/starter4.html b/Chapter ZIPs/chapter6/starter4.html new file mode 100644 index 0000000..284e6cb --- /dev/null +++ b/Chapter ZIPs/chapter6/starter4.html @@ -0,0 +1,19 @@ + + + +Practice with Gradients + + + + +

Linear Gradient

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+

Heading 2

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+

Heading 2

+

This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content. This is content.

+ + + diff --git a/Chapter ZIPs/chapter6/starters/background.jpg b/Chapter ZIPs/chapter6/starters/background.jpg new file mode 100644 index 0000000..bd76938 Binary files /dev/null and b/Chapter ZIPs/chapter6/starters/background.jpg differ diff --git a/Chapter ZIPs/chapter6/starters/coffeelogo.jpg b/Chapter ZIPs/chapter6/starters/coffeelogo.jpg new file mode 100644 index 0000000..3c302c7 Binary files /dev/null and b/Chapter ZIPs/chapter6/starters/coffeelogo.jpg differ diff --git a/Chapter ZIPs/chapter6/starters/fall.jpg b/Chapter ZIPs/chapter6/starters/fall.jpg new file mode 100644 index 0000000..b95e481 Binary files /dev/null and b/Chapter ZIPs/chapter6/starters/fall.jpg differ diff --git a/Chapter ZIPs/chapter6/starters/favicon.ico b/Chapter ZIPs/chapter6/starters/favicon.ico new file mode 100644 index 0000000..302fbbe Binary files /dev/null and b/Chapter ZIPs/chapter6/starters/favicon.ico differ diff --git a/Chapter ZIPs/chapter6/starters/headerbackblue.jpg b/Chapter ZIPs/chapter6/starters/headerbackblue.jpg new file mode 100644 index 0000000..6ae2660 Binary files /dev/null and b/Chapter ZIPs/chapter6/starters/headerbackblue.jpg differ diff --git a/Chapter ZIPs/chapter6/starters/heroback2.jpg b/Chapter ZIPs/chapter6/starters/heroback2.jpg new file mode 100644 index 0000000..b2d66e1 Binary files /dev/null and b/Chapter ZIPs/chapter6/starters/heroback2.jpg differ diff --git a/Chapter ZIPs/chapter6/starters/lighthouselogo.jpg b/Chapter ZIPs/chapter6/starters/lighthouselogo.jpg new file mode 100644 index 0000000..4db3869 Binary files /dev/null and b/Chapter ZIPs/chapter6/starters/lighthouselogo.jpg differ diff --git a/Chapter ZIPs/chapter6/starters/sunrise.jpg b/Chapter ZIPs/chapter6/starters/sunrise.jpg new file mode 100644 index 0000000..f693eb0 Binary files /dev/null and b/Chapter ZIPs/chapter6/starters/sunrise.jpg differ diff --git a/Chapter ZIPs/chapter6/template.html b/Chapter ZIPs/chapter6/template.html new file mode 100644 index 0000000..6a48229 --- /dev/null +++ b/Chapter ZIPs/chapter6/template.html @@ -0,0 +1,9 @@ + + + +Page Title Goes Here + + + + + \ No newline at end of file diff --git a/ZIPs/lab6_1_CalebFontenot.zip b/ZIPs/lab6_1_CalebFontenot.zip new file mode 100644 index 0000000..c974713 Binary files /dev/null and b/ZIPs/lab6_1_CalebFontenot.zip differ