From ba26741f42b16d3530a35259de5e7af7e9bcbe14 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Sun, 26 Feb 2023 23:19:14 -0600 Subject: [PATCH] Begin MP06 --- .../public_html/pacific.css | 1 + .../public_html/activities.html | 16 +- .../MP05_CalebFontenot/public_html/index.html | 12 +- .../MP05_CalebFontenot/public_html/yurts.html | 2 +- Assignments/MP06_CalebFontenot/.bowerrc | 3 + Assignments/MP06_CalebFontenot/Gruntfile.js | 9 ++ Assignments/MP06_CalebFontenot/Markou.txt | 3 + .../Printed HTMLs/activities.html | 72 +++++++++ .../Printed HTMLs/index.html | 92 +++++++++++ .../Printed HTMLs/pacific.html | 124 +++++++++++++++ .../Printed HTMLs/yurts.html | 76 +++++++++ Assignments/MP06_CalebFontenot/bower.json | 13 ++ Assignments/MP06_CalebFontenot/gulpfile.js | 10 ++ .../nbproject/private/private.properties | 1 + .../nbproject/private/private.xml | 12 ++ .../nbproject/project.properties | 5 + .../MP06_CalebFontenot/nbproject/project.xml | 9 ++ Assignments/MP06_CalebFontenot/package.json | 8 + .../public_html/activities.html | 44 ++++++ .../public_html/images/coast.jpg | Bin 0 -> 74576 bytes .../public_html/images/coast2.jpg | Bin 0 -> 74539 bytes .../public_html/images/favicon.ico | Bin 0 -> 894 bytes .../public_html/images/marker.gif | Bin 0 -> 306 bytes .../public_html/images/sunset.jpg | Bin 0 -> 2179 bytes .../public_html/images/trail.jpg | Bin 0 -> 109527 bytes .../public_html/images/yurt.jpg | Bin 0 -> 93591 bytes .../MP06_CalebFontenot/public_html/index.html | 68 ++++++++ .../public_html/pacific.css | 146 ++++++++++++++++++ .../MP06_CalebFontenot/public_html/yurts.html | 56 +++++++ 29 files changed, 771 insertions(+), 11 deletions(-) create mode 100644 Assignments/MP06_CalebFontenot/.bowerrc create mode 100644 Assignments/MP06_CalebFontenot/Gruntfile.js create mode 100644 Assignments/MP06_CalebFontenot/Markou.txt create mode 100644 Assignments/MP06_CalebFontenot/Printed HTMLs/activities.html create mode 100644 Assignments/MP06_CalebFontenot/Printed HTMLs/index.html create mode 100644 Assignments/MP06_CalebFontenot/Printed HTMLs/pacific.html create mode 100644 Assignments/MP06_CalebFontenot/Printed HTMLs/yurts.html create mode 100644 Assignments/MP06_CalebFontenot/bower.json create mode 100644 Assignments/MP06_CalebFontenot/gulpfile.js create mode 100644 Assignments/MP06_CalebFontenot/nbproject/private/private.properties create mode 100644 Assignments/MP06_CalebFontenot/nbproject/private/private.xml create mode 100644 Assignments/MP06_CalebFontenot/nbproject/project.properties create mode 100644 Assignments/MP06_CalebFontenot/nbproject/project.xml create mode 100644 Assignments/MP06_CalebFontenot/package.json create mode 100644 Assignments/MP06_CalebFontenot/public_html/activities.html create mode 100644 Assignments/MP06_CalebFontenot/public_html/images/coast.jpg create mode 100644 Assignments/MP06_CalebFontenot/public_html/images/coast2.jpg create mode 100644 Assignments/MP06_CalebFontenot/public_html/images/favicon.ico create mode 100644 Assignments/MP06_CalebFontenot/public_html/images/marker.gif create mode 100644 Assignments/MP06_CalebFontenot/public_html/images/sunset.jpg create mode 100644 Assignments/MP06_CalebFontenot/public_html/images/trail.jpg create mode 100644 Assignments/MP06_CalebFontenot/public_html/images/yurt.jpg create mode 100644 Assignments/MP06_CalebFontenot/public_html/index.html create mode 100644 Assignments/MP06_CalebFontenot/public_html/pacific.css create mode 100644 Assignments/MP06_CalebFontenot/public_html/yurts.html diff --git a/Assignments/MP04_CalebFontenot/public_html/pacific.css b/Assignments/MP04_CalebFontenot/public_html/pacific.css index cfc5506..cee427e 100644 --- a/Assignments/MP04_CalebFontenot/public_html/pacific.css +++ b/Assignments/MP04_CalebFontenot/public_html/pacific.css @@ -32,6 +32,7 @@ header { background-repeat: no-repeat; background-position: right; } + nav { background-color: #FFFFFF; text-align: center; diff --git a/Assignments/MP05_CalebFontenot/public_html/activities.html b/Assignments/MP05_CalebFontenot/public_html/activities.html index be4c063..384c41d 100644 --- a/Assignments/MP05_CalebFontenot/public_html/activities.html +++ b/Assignments/MP05_CalebFontenot/public_html/activities.html @@ -12,17 +12,18 @@ Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this
-

Pacific Trails Resort

+

Pacific Trails Resort

+

Activities at Pacific Trails

Hiking
@@ -39,4 +40,5 @@ Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this caleb@fontenot.com 
+
diff --git a/Assignments/MP05_CalebFontenot/public_html/index.html b/Assignments/MP05_CalebFontenot/public_html/index.html index f55e629..d4e902c 100644 --- a/Assignments/MP05_CalebFontenot/public_html/index.html +++ b/Assignments/MP05_CalebFontenot/public_html/index.html @@ -11,10 +11,11 @@ Click nbfs://nbhost/SystemFileSystem/Templates/Other/html.html to edit this temp
- -
-

Pacific Trails Resort

+
+

Pacific Trails Resort

+ +
+

Enjoy Nature in Luxury

+

Pacific Trails Resort offers a special lodging experience on the California North Coast with panoramic views of the Pacific Ocean. Your stay at Pacific Trails Resort includes a sumptuous appointed private yurt and a cooked-to-order breakfast each morning.

    @@ -52,11 +55,14 @@ Click nbfs://nbhost/SystemFileSystem/Templates/Other/html.html to edit this temp

+ +
+ diff --git a/Assignments/MP05_CalebFontenot/public_html/yurts.html b/Assignments/MP05_CalebFontenot/public_html/yurts.html index b1b3d08..c4fe539 100644 --- a/Assignments/MP05_CalebFontenot/public_html/yurts.html +++ b/Assignments/MP05_CalebFontenot/public_html/yurts.html @@ -12,7 +12,7 @@ Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this
-

Pacific Trails Resort

+

Pacific Trails Resort