From fd595f2d9b9ab954b7cc6fff4bb26a83dd88844b Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Wed, 22 Feb 2023 19:08:31 -0600 Subject: [PATCH] I hate this --- .gitignore | 1 + .../MP04_CalebFontenot/public_html/yurts.html | 6 + Assignments/MP05_CalebFontenot/.bowerrc | 3 + Assignments/MP05_CalebFontenot/Gruntfile.js | 9 + Assignments/MP05_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/MP05_CalebFontenot/bower.json | 13 ++ Assignments/MP05_CalebFontenot/gulpfile.js | 10 + .../nbproject/project.properties | 5 + .../MP05_CalebFontenot/nbproject/project.xml | 9 + Assignments/MP05_CalebFontenot/package.json | 8 + .../public_html/activities.html | 42 ++++ .../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 .../MP05_CalebFontenot/public_html/index.html | 62 ++++++ .../public_html/pacific.css | 129 ++++++++++++ .../MP05_CalebFontenot/public_html/yurts.html | 52 +++++ .../Printed HTMLs/7.10_index.html | 140 +++++++++++++ .../Printed HTMLs/7.11_index.html | 140 +++++++++++++ .../Printed HTMLs/7.12_index.html | 161 +++++++++++++++ .../Printed HTMLs/7.13_index.html | 159 +++++++++++++++ .../Printed HTMLs/7.1_box1.html | 58 ++++++ .../Printed HTMLs/7.1_box2.html | 57 ++++++ .../Printed HTMLs/7.1_boxsizing1.html | 57 ++++++ .../Printed HTMLs/7.2_float.html | 60 ++++++ .../Printed HTMLs/7.3_float.html | 71 +++++++ .../Printed HTMLs/7.4_float.html | 74 +++++++ .../Printed HTMLs/7.5_boxsizing2.html | 58 ++++++ .../Printed HTMLs/7.6_index.html | 141 +++++++++++++ .../Printed HTMLs/7.6_singlecol.html | 86 ++++++++ .../Printed HTMLs/7.7_index.html | 67 +++++++ .../Printed HTMLs/7.8_bistro.html | 66 +++++++ .../Printed HTMLs/7.8_bistroprint.html | 53 +++++ .../Printed HTMLs/7.8_index.html | 68 +++++++ .../Printed HTMLs/7.9_bistro.html | 71 +++++++ .../Printed HTMLs/7.9_index.html | 67 +++++++ .../public_html/7.12/index1.html | 1 + .../public_html/7.13/index.html | 130 ++++++++++++ .../public_html/7.13/lighthouseisland.jpg | Bin 0 -> 28908 bytes .../public_html/7.13/lighthouselogo.jpg | Bin 0 -> 4621 bytes .../public_html/7.6/index.html | 187 ++++++++++-------- ZIPs/MP05_CalebFontenot.zip | Bin 0 -> 364859 bytes ZIPs/lab7_CalebFontenot.zip | Bin 0 -> 730937 bytes 51 files changed, 2606 insertions(+), 82 deletions(-) create mode 100644 Assignments/MP05_CalebFontenot/.bowerrc create mode 100644 Assignments/MP05_CalebFontenot/Gruntfile.js create mode 100644 Assignments/MP05_CalebFontenot/Markou.txt create mode 100644 Assignments/MP05_CalebFontenot/Printed HTMLs/activities.html create mode 100644 Assignments/MP05_CalebFontenot/Printed HTMLs/index.html create mode 100644 Assignments/MP05_CalebFontenot/Printed HTMLs/pacific.html create mode 100644 Assignments/MP05_CalebFontenot/Printed HTMLs/yurts.html create mode 100644 Assignments/MP05_CalebFontenot/bower.json create mode 100644 Assignments/MP05_CalebFontenot/gulpfile.js create mode 100644 Assignments/MP05_CalebFontenot/nbproject/project.properties create mode 100644 Assignments/MP05_CalebFontenot/nbproject/project.xml create mode 100644 Assignments/MP05_CalebFontenot/package.json create mode 100644 Assignments/MP05_CalebFontenot/public_html/activities.html create mode 100644 Assignments/MP05_CalebFontenot/public_html/images/coast.jpg create mode 100644 Assignments/MP05_CalebFontenot/public_html/images/coast2.jpg create mode 100644 Assignments/MP05_CalebFontenot/public_html/images/favicon.ico create mode 100644 Assignments/MP05_CalebFontenot/public_html/images/marker.gif create mode 100644 Assignments/MP05_CalebFontenot/public_html/images/sunset.jpg create mode 100644 Assignments/MP05_CalebFontenot/public_html/images/trail.jpg create mode 100644 Assignments/MP05_CalebFontenot/public_html/images/yurt.jpg create mode 100644 Assignments/MP05_CalebFontenot/public_html/index.html create mode 100644 Assignments/MP05_CalebFontenot/public_html/pacific.css create mode 100644 Assignments/MP05_CalebFontenot/public_html/yurts.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.10_index.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.11_index.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.12_index.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.13_index.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.1_box1.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.1_box2.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.1_boxsizing1.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.2_float.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.3_float.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.4_float.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.5_boxsizing2.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.6_index.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.6_singlecol.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.7_index.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.8_bistro.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.8_bistroprint.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.8_index.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.9_bistro.html create mode 100644 Assignments/lab7_CalebFontenot/Printed HTMLs/7.9_index.html create mode 100644 Assignments/lab7_CalebFontenot/public_html/7.13/index.html create mode 100644 Assignments/lab7_CalebFontenot/public_html/7.13/lighthouseisland.jpg create mode 100644 Assignments/lab7_CalebFontenot/public_html/7.13/lighthouselogo.jpg create mode 100644 ZIPs/MP05_CalebFontenot.zip create mode 100644 ZIPs/lab7_CalebFontenot.zip diff --git a/.gitignore b/.gitignore index c997f86..612ac2c 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /Assignments/lab6.2_CalebFontenot/nbproject/private/ /Assignments/MP04_CalebFontenot/nbproject/private/ /Assignments/lab7_CalebFontenot/nbproject/private/ +/Assignments/MP05_CalebFontenot/nbproject/private/ diff --git a/Assignments/MP04_CalebFontenot/public_html/yurts.html b/Assignments/MP04_CalebFontenot/public_html/yurts.html index 5b3a01f..8890c38 100644 --- a/Assignments/MP04_CalebFontenot/public_html/yurts.html +++ b/Assignments/MP04_CalebFontenot/public_html/yurts.html @@ -25,16 +25,22 @@ Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this

The Yurts at Pacific Trails

+
What is a yurt?
Our luxury yurts are permanent structures four feet off the ground. Each Yurt is fully enclosed with canvas walls, a wooden floor, and a roof dome that can be opened.
+
+
How are the yurts furnished?
Each yurt is furnished with a queen-size bed with down quilt and gas-fired stove. Your luxury camping experience includes electricity and a sink with hot and cold running water. Shower and restroom facilities are located in the lodge.
+
+
What should I bring?
Most guest pack comfortable walking shoes and plan to dress for changing weather with light layers of clothing. It's also helpful to bring a flashlight and a sense of adventure!
+