From 44d8b7787c866299f54f95e097260247d931b645 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Wed, 25 Jan 2023 10:57:54 -0600 Subject: [PATCH] begin MP2 --- .gitignore | 2 + Assignments/MP02_CalebFontenot/.bowerrc | 3 + Assignments/MP02_CalebFontenot/Gruntfile.js | 9 ++ Assignments/MP02_CalebFontenot/bower.json | 13 +++ Assignments/MP02_CalebFontenot/gulpfile.js | 10 +++ .../nbproject/project.properties | 5 ++ .../MP02_CalebFontenot/nbproject/project.xml | 9 ++ Assignments/MP02_CalebFontenot/package.json | 8 ++ .../MP02_CalebFontenot/public_html/index.html | 20 +++++ .../public_html/pacific.css | 9 ++ Assignments/lab4_CalebFontenot/.bowerrc | 3 + Assignments/lab4_CalebFontenot/Gruntfile.js | 9 ++ .../lab4_CalebFontenot/Print_HTML/4.2.html | 73 ++++++++++++++++ .../lab4_CalebFontenot/Print_HTML/4.5.html | 79 ++++++++++++++++++ .../Print_HTML/classid_4.4.html | 78 +++++++++++++++++ .../Print_HTML/color_4.3.html | 35 ++++++++ .../Print_HTML/external_4.3.html | 41 +++++++++ .../Print_HTML/index_4.6.html | 23 +++++ .../Print_HTML/index_4.8.html | 45 ++++++++++ .../Print_HTML/services_4.6.html | 20 +++++ .../Print_HTML/trillium_4.6.html | 60 +++++++++++++ Assignments/lab4_CalebFontenot/bower.json | 13 +++ Assignments/lab4_CalebFontenot/gulpfile.js | 10 +++ .../nbproject/project.properties | 5 ++ .../lab4_CalebFontenot/nbproject/project.xml | 9 ++ Assignments/lab4_CalebFontenot/package.json | 8 ++ .../public_html/4.2/embedded.html | 46 ++++++++++ .../public_html/4.3/color.css | 13 +++ .../public_html/4.3/external.html | 15 ++++ .../public_html/4.4/classid.html | 54 ++++++++++++ .../public_html/4.4/classid_2.html | 51 +++++++++++ .../public_html/4.5/classid_2.html | 52 ++++++++++++ .../public_html/4.6/classid.html | 34 ++++++++ .../public_html/4.6/services.html | 15 ++++ .../public_html/4.6/trillium.css | 37 ++++++++ .../public_html/4.7/index.html | 21 +++++ .../public_html/4.7/site.css | 12 +++ .../lab4_CalebFontenot/public_html/index.html | 17 ++++ .../public_html/index_1.html | 16 ++++ ZIPs/lab4_CalebFontenot.zip | Bin 0 -> 21044 bytes 40 files changed, 982 insertions(+) create mode 100644 Assignments/MP02_CalebFontenot/.bowerrc create mode 100644 Assignments/MP02_CalebFontenot/Gruntfile.js create mode 100644 Assignments/MP02_CalebFontenot/bower.json create mode 100644 Assignments/MP02_CalebFontenot/gulpfile.js create mode 100644 Assignments/MP02_CalebFontenot/nbproject/project.properties create mode 100644 Assignments/MP02_CalebFontenot/nbproject/project.xml create mode 100644 Assignments/MP02_CalebFontenot/package.json create mode 100644 Assignments/MP02_CalebFontenot/public_html/index.html create mode 100644 Assignments/MP02_CalebFontenot/public_html/pacific.css create mode 100644 Assignments/lab4_CalebFontenot/.bowerrc create mode 100644 Assignments/lab4_CalebFontenot/Gruntfile.js create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/4.2.html create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/4.5.html create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/classid_4.4.html create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/color_4.3.html create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/external_4.3.html create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/index_4.6.html create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/index_4.8.html create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/services_4.6.html create mode 100644 Assignments/lab4_CalebFontenot/Print_HTML/trillium_4.6.html create mode 100644 Assignments/lab4_CalebFontenot/bower.json create mode 100644 Assignments/lab4_CalebFontenot/gulpfile.js create mode 100644 Assignments/lab4_CalebFontenot/nbproject/project.properties create mode 100644 Assignments/lab4_CalebFontenot/nbproject/project.xml create mode 100644 Assignments/lab4_CalebFontenot/package.json create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.2/embedded.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.3/color.css create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.3/external.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.4/classid.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.4/classid_2.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.5/classid_2.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.6/classid.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.6/services.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.6/trillium.css create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.7/index.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/4.7/site.css create mode 100644 Assignments/lab4_CalebFontenot/public_html/index.html create mode 100644 Assignments/lab4_CalebFontenot/public_html/index_1.html create mode 100644 ZIPs/lab4_CalebFontenot.zip diff --git a/.gitignore b/.gitignore index 8f3e173..ac0008d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ /lab2_2_CalebFontenot/nbproject/private/ /Assignments/MP1_CalebFontenot/nbproject/private/ +/Assignments/lab4_CalebFontenot/nbproject/private/ +/Assignments/MP02_CalebFontenot/nbproject/private/ diff --git a/Assignments/MP02_CalebFontenot/.bowerrc b/Assignments/MP02_CalebFontenot/.bowerrc new file mode 100644 index 0000000..0ba26f2 --- /dev/null +++ b/Assignments/MP02_CalebFontenot/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "public_html/bower_components" +} diff --git a/Assignments/MP02_CalebFontenot/Gruntfile.js b/Assignments/MP02_CalebFontenot/Gruntfile.js new file mode 100644 index 0000000..496183b --- /dev/null +++ b/Assignments/MP02_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/MP02_CalebFontenot/bower.json b/Assignments/MP02_CalebFontenot/bower.json new file mode 100644 index 0000000..8f4d5b6 --- /dev/null +++ b/Assignments/MP02_CalebFontenot/bower.json @@ -0,0 +1,13 @@ +{ + "name": "MP02_CalebFontenot", + "version": "1.0.0", + "main": "path/to/main.css", + "ignore": [ + ".jshintrc", + "**/*.txt" + ], + "dependencies": { + }, + "devDependencies": { + } +} diff --git a/Assignments/MP02_CalebFontenot/gulpfile.js b/Assignments/MP02_CalebFontenot/gulpfile.js new file mode 100644 index 0000000..eccfb02 --- /dev/null +++ b/Assignments/MP02_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/MP02_CalebFontenot/nbproject/project.properties b/Assignments/MP02_CalebFontenot/nbproject/project.properties new file mode 100644 index 0000000..98f0fb3 --- /dev/null +++ b/Assignments/MP02_CalebFontenot/nbproject/project.properties @@ -0,0 +1,5 @@ +file.reference.MP02_CalebFontenot-public_html=public_html +file.reference.MP02_CalebFontenot-test=test +files.encoding=UTF-8 +site.root.folder=${file.reference.MP02_CalebFontenot-public_html} +test.folder=${file.reference.MP02_CalebFontenot-test} diff --git a/Assignments/MP02_CalebFontenot/nbproject/project.xml b/Assignments/MP02_CalebFontenot/nbproject/project.xml new file mode 100644 index 0000000..5d4a061 --- /dev/null +++ b/Assignments/MP02_CalebFontenot/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + MP02_CalebFontenot + + + diff --git a/Assignments/MP02_CalebFontenot/package.json b/Assignments/MP02_CalebFontenot/package.json new file mode 100644 index 0000000..d0eb853 --- /dev/null +++ b/Assignments/MP02_CalebFontenot/package.json @@ -0,0 +1,8 @@ +{ + "name": "MP02_CalebFontenot", + "version": "1.0.0", + "keywords": ["util", "functional", "server", "client", "browser"], + "author": "caleb", + "contributors": [], + "dependencies": {} +} diff --git a/Assignments/MP02_CalebFontenot/public_html/index.html b/Assignments/MP02_CalebFontenot/public_html/index.html new file mode 100644 index 0000000..85120e1 --- /dev/null +++ b/Assignments/MP02_CalebFontenot/public_html/index.html @@ -0,0 +1,20 @@ + + + + + Pacific Trails Resort + + + + +
+

Pacific Trails Resort

+
+ + + diff --git a/Assignments/MP02_CalebFontenot/public_html/pacific.css b/Assignments/MP02_CalebFontenot/public_html/pacific.css new file mode 100644 index 0000000..f77201b --- /dev/null +++ b/Assignments/MP02_CalebFontenot/public_html/pacific.css @@ -0,0 +1,9 @@ +/* +Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license +Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template +*/ +/* + Created on : Jan 25, 2023, 9:50:47 AM + Author : caleb +*/ + diff --git a/Assignments/lab4_CalebFontenot/.bowerrc b/Assignments/lab4_CalebFontenot/.bowerrc new file mode 100644 index 0000000..0ba26f2 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "public_html/bower_components" +} diff --git a/Assignments/lab4_CalebFontenot/Gruntfile.js b/Assignments/lab4_CalebFontenot/Gruntfile.js new file mode 100644 index 0000000..496183b --- /dev/null +++ b/Assignments/lab4_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/lab4_CalebFontenot/Print_HTML/4.2.html b/Assignments/lab4_CalebFontenot/Print_HTML/4.2.html new file mode 100644 index 0000000..c516f27 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/4.2.html @@ -0,0 +1,73 @@ + + + +embedded.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/4.2/embedded.html
+
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <title>Trillium Media Design</title>
+        <meta charset="utf-8">
+        <style>
+            body {
+                background-color: #E6E6FA;
+                color: #191970;
+            }
+            h1 {
+                background-color: #191970;
+                color: #E6E6FA;
+            }
+            h2 {
+                background-color: #AEAED4;
+                color: #191970;
+            }
+        </style>  
+    </head>
+    <body>
+        <header>
+            <h1>Trillium Media Design</h1>
+        </header>
+        <nav><a href="index.html">Home</a> &nbsp;
+            <a href="services.html">Services</a> &nbsp;
+            <a href="contact.html">Contact</a>
+        </nav>
+        <main>
+            <h2>New Media and Web Design</h2>
+            <p>Trillium Media Design will bring your company&rsquo;s Web presence to the next level. We offer a comprehensive range of services:</p>
+            <ul>
+                <li>Website Design</li>
+                <li>Interactive Animation</li>
+                <li>E-Commerce Solutions</li>   
+                <li>Usability Studies</li>
+                <li>Search Engine Optimization</li>
+            </ul>
+            <h2>Meeting Your Business Needs</h2>
+            <p>Our expert designers will listen to you as they create a website that helps to promote and grow your business.</p>
+        </main>
+        <footer>
+            Copyright &copy; 2023 Caleb Christopher Fontenot
+        </footer>
+    </body>
+</html>
+
+ diff --git a/Assignments/lab4_CalebFontenot/Print_HTML/4.5.html b/Assignments/lab4_CalebFontenot/Print_HTML/4.5.html new file mode 100644 index 0000000..c0aca99 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/4.5.html @@ -0,0 +1,79 @@ + + + +classid_2.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/4.5/classid_2.html
+
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <title>Trillium Media Design</title>
+        <meta charset="utf-8">
+        <style>
+            body 
+            {
+                background-color: #E6E6FA;
+                color: #191970;
+            }
+            h1 {
+                background-color: #191970;
+                color: #E6E6FA;
+            }
+            h2 {
+                background-color: #AEAED4;
+                color: #191970;
+            }
+            nav { background-color: #E2E2EF;}
+            footer {color: #666666;}
+            .companyname {color: #6A6AA7;}
+            .feature {color: #FF0000;}
+            #new {color: #FF00CC;}
+        </style> 
+    </head>
+    <body>
+        <header>
+            <h1 class="companyname">Trillium Media Design</h1>
+        </header>
+        <nav><a href="index.html">Home</a> &nbsp;
+            <a href="services.html">Services</a> &nbsp;
+            <a href="contact.html">Contact</a>
+        </nav>
+        <main>
+            <h2>New Media and Web Design</h2>
+            <p>Trillium Media Design will bring your company&rsquo;s Web presence to the next level. We offer a comprehensive range of services:</p>
+            <ul>
+                <li>Website Design</li>
+                <li>Interactive Animation</li>
+                <li>E-Commerce Solutions</li>   
+                <li class="feature">    Usability Studies</li>
+                <li class="feature">Search Engine Optimization</li>
+            </ul>
+            <h2>Meeting Your Business Needs</h2>
+            <p id="new">Our expert designers will listen to you as they create a website that helps to promote and grow your business.</p>
+        </main>
+        <footer>
+            Copyright &copy; 2018 Your Name Here
+        </footer>
+    </body>
+</html>
+
+ diff --git a/Assignments/lab4_CalebFontenot/Print_HTML/classid_4.4.html b/Assignments/lab4_CalebFontenot/Print_HTML/classid_4.4.html new file mode 100644 index 0000000..553fe93 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/classid_4.4.html @@ -0,0 +1,78 @@ + + + +classid_2.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/4.4/classid_2.html
+
+<!DOCTYPE html>
+<html lang="en">
+    <head>
+        <title>Trillium Media Design</title>
+        <meta charset="utf-8">
+        <style>
+            body 
+            {
+                background-color: #E6E6FA;
+                color: #191970;
+            }
+            h1 {
+                background-color: #191970;
+                color: #E6E6FA;
+            }
+            h2 {
+                background-color: #AEAED4;
+                color: #191970;
+            }
+            nav { background-color: #E2E2EF;}
+            footer {color: #666666;}
+            .feature {color: #FF0000;}
+            #new {color: #FF00CC;}
+        </style> 
+    </head>
+    <body>
+        <header>
+            <h1>Trillium Media Design</h1>
+        </header>
+        <nav><a href="index.html">Home</a> &nbsp;
+            <a href="services.html">Services</a> &nbsp;
+            <a href="contact.html">Contact</a>
+        </nav>
+        <main>
+            <h2>New Media and Web Design</h2>
+            <p>Trillium Media Design will bring your company&rsquo;s Web presence to the next level. We offer a comprehensive range of services:</p>
+            <ul>
+                <li>Website Design</li>
+                <li>Interactive Animation</li>
+                <li>E-Commerce Solutions</li>   
+                <li class="feature">    Usability Studies</li>
+                <li class="feature">Search Engine Optimization</li>
+            </ul>
+            <h2>Meeting Your Business Needs</h2>
+            <p id="new">Our expert designers will listen to you as they create a website that helps to promote and grow your business.</p>
+        </main>
+        <footer>
+            Copyright &copy; 2018 Your Name Here
+        </footer>
+    </body>
+</html>
+
+ diff --git a/Assignments/lab4_CalebFontenot/Print_HTML/color_4.3.html b/Assignments/lab4_CalebFontenot/Print_HTML/color_4.3.html new file mode 100644 index 0000000..ceba6ff --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/color_4.3.html @@ -0,0 +1,35 @@ + + + +color.css + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/4.3/color.css
+
+/*
+Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
+*/
+/* 
+    Created on : Jan 24, 2023, 8:37:05 AM
+    Author     : caleb
+*/
+body 
+{
+    background-color: #0099FF;
+    color: #FFFFFF;
+}
+
+
+ diff --git a/Assignments/lab4_CalebFontenot/Print_HTML/external_4.3.html b/Assignments/lab4_CalebFontenot/Print_HTML/external_4.3.html new file mode 100644 index 0000000..5774405 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/external_4.3.html @@ -0,0 +1,41 @@ + + + +external.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/4.3/external.html
+
+<!DOCTYPE html>
+<!--
+Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
+-->
+<html>
+    <head>
+        <title>External Styles</title>
+        <meta charset="UTF-8">
+        <link rel="stylesheet" href="color.css">
+    </head>
+    <body>
+        <p>This web page uses an external style sheet.</p>
+    </body>
+</html>
+
+
+ diff --git a/Assignments/lab4_CalebFontenot/Print_HTML/index_4.6.html b/Assignments/lab4_CalebFontenot/Print_HTML/index_4.6.html new file mode 100644 index 0000000..a50c5f1 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/index_4.6.html @@ -0,0 +1,23 @@ + + + +classid.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/4.6/classid.html
+
+<link href="trillium.css" rel="stylesheet">
+
+ diff --git a/Assignments/lab4_CalebFontenot/Print_HTML/index_4.8.html b/Assignments/lab4_CalebFontenot/Print_HTML/index_4.8.html new file mode 100644 index 0000000..5d2320e --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/index_4.8.html @@ -0,0 +1,45 @@ + + + +index.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/index.html
+
+<!DOCTYPE html>
+<!--
+Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+Click nbfs://nbhost/SystemFileSystem/Templates/Other/html.html to edit this template
+-->
+<html>
+    <head>
+        <title>TODO supply a title</title>
+        <meta charset="UTF-8">
+        <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    </head>
+    <body style="backgroundcolor:#F5F5F5;color:#008080">
+        <h1 style="background-color:#008080;color:#F5F5F5;">Inline CSS</h1>
+        <p>This paragraph inherits the styles applied to the body tag.</p>
+        <p style="color:#333333">This paragraph overrides the text color style.</p>
+    </body>
+</html>
+
+
+ diff --git a/Assignments/lab4_CalebFontenot/Print_HTML/services_4.6.html b/Assignments/lab4_CalebFontenot/Print_HTML/services_4.6.html new file mode 100644 index 0000000..de54291 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/services_4.6.html @@ -0,0 +1,20 @@ + + + +services.html + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/4.6/services.html
+
+fs://nbhost/SystemFileSystem/Templates/Clie
+
+ diff --git a/Assignments/lab4_CalebFontenot/Print_HTML/trillium_4.6.html b/Assignments/lab4_CalebFontenot/Print_HTML/trillium_4.6.html new file mode 100644 index 0000000..64db78c --- /dev/null +++ b/Assignments/lab4_CalebFontenot/Print_HTML/trillium_4.6.html @@ -0,0 +1,60 @@ + + + +trillium.css + + + + +
/home/caleb/ASDV-WebDev/Assignments/lab4_CalebFontenot/public_html/4.6/trillium.css
+
+/*
+Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
+*/
+/* 
+    Created on : Jan 24, 2023, 9:20:27 AM
+    Author     : caleb
+*/
+
+body
+{
+    background-color: #E6E6FA;
+    color: #191970;
+}
+h1 {
+    background-color: #191970;
+    color: #E6E6FA;
+}
+h2 {
+    background-color: #AEAED4;
+    color: #191970;
+}
+nav {
+    background-color: #E2E2EF;
+}
+footer {
+    color: #666666;
+}
+.companyname {
+    color: #6A6AA7;
+}
+.feature {
+    color: #FF0000;
+}
+#new {
+    color: #FF00CC;
+}
+
+ diff --git a/Assignments/lab4_CalebFontenot/bower.json b/Assignments/lab4_CalebFontenot/bower.json new file mode 100644 index 0000000..4851a90 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/bower.json @@ -0,0 +1,13 @@ +{ + "name": "lab4_CalebFontenot", + "version": "1.0.0", + "main": "path/to/main.css", + "ignore": [ + ".jshintrc", + "**/*.txt" + ], + "dependencies": { + }, + "devDependencies": { + } +} diff --git a/Assignments/lab4_CalebFontenot/gulpfile.js b/Assignments/lab4_CalebFontenot/gulpfile.js new file mode 100644 index 0000000..eccfb02 --- /dev/null +++ b/Assignments/lab4_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/lab4_CalebFontenot/nbproject/project.properties b/Assignments/lab4_CalebFontenot/nbproject/project.properties new file mode 100644 index 0000000..e16c499 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/nbproject/project.properties @@ -0,0 +1,5 @@ +file.reference.lab4_CalebFontenot-public_html=public_html +file.reference.lab4_CalebFontenot-test=test +files.encoding=UTF-8 +site.root.folder=${file.reference.lab4_CalebFontenot-public_html} +test.folder=${file.reference.lab4_CalebFontenot-test} diff --git a/Assignments/lab4_CalebFontenot/nbproject/project.xml b/Assignments/lab4_CalebFontenot/nbproject/project.xml new file mode 100644 index 0000000..4cd50ae --- /dev/null +++ b/Assignments/lab4_CalebFontenot/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + lab4_CalebFontenot + + + diff --git a/Assignments/lab4_CalebFontenot/package.json b/Assignments/lab4_CalebFontenot/package.json new file mode 100644 index 0000000..1ed4e88 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/package.json @@ -0,0 +1,8 @@ +{ + "name": "lab4_CalebFontenot", + "version": "1.0.0", + "keywords": ["util", "functional", "server", "client", "browser"], + "author": "caleb", + "contributors": [], + "dependencies": {} +} diff --git a/Assignments/lab4_CalebFontenot/public_html/4.2/embedded.html b/Assignments/lab4_CalebFontenot/public_html/4.2/embedded.html new file mode 100644 index 0000000..266a471 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.2/embedded.html @@ -0,0 +1,46 @@ + + + + Trillium Media Design + + + + +
+

Trillium Media Design

+
+ +
+

New Media and Web Design

+

Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:

+ +

Meeting Your Business Needs

+

Our expert designers will listen to you as they create a website that helps to promote and grow your business.

+
+ + + \ No newline at end of file diff --git a/Assignments/lab4_CalebFontenot/public_html/4.3/color.css b/Assignments/lab4_CalebFontenot/public_html/4.3/color.css new file mode 100644 index 0000000..9eeee23 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.3/color.css @@ -0,0 +1,13 @@ +/* +Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license +Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template +*/ +/* + Created on : Jan 24, 2023, 8:37:05 AM + Author : caleb +*/ +body +{ + background-color: #0099FF; + color: #FFFFFF; +} diff --git a/Assignments/lab4_CalebFontenot/public_html/4.3/external.html b/Assignments/lab4_CalebFontenot/public_html/4.3/external.html new file mode 100644 index 0000000..9e47f52 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.3/external.html @@ -0,0 +1,15 @@ + + + + + External Styles + + + + +

This web page uses an external style sheet.

+ + diff --git a/Assignments/lab4_CalebFontenot/public_html/4.4/classid.html b/Assignments/lab4_CalebFontenot/public_html/4.4/classid.html new file mode 100644 index 0000000..f0271ba --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.4/classid.html @@ -0,0 +1,54 @@ + + + + Trillium Media Design + + + + +
+

Trillium Media Design

+
+ +
+

New Media and Web Design

+

Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:

+ +

Meeting Your Business Needs

+

Our expert designers will listen to you as they create a website that helps to promote and grow your business.

+
+ + + \ No newline at end of file diff --git a/Assignments/lab4_CalebFontenot/public_html/4.4/classid_2.html b/Assignments/lab4_CalebFontenot/public_html/4.4/classid_2.html new file mode 100644 index 0000000..9383d5f --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.4/classid_2.html @@ -0,0 +1,51 @@ + + + + Trillium Media Design + + + + +
+

Trillium Media Design

+
+ +
+

New Media and Web Design

+

Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:

+ +

Meeting Your Business Needs

+

Our expert designers will listen to you as they create a website that helps to promote and grow your business.

+
+ + + \ No newline at end of file diff --git a/Assignments/lab4_CalebFontenot/public_html/4.5/classid_2.html b/Assignments/lab4_CalebFontenot/public_html/4.5/classid_2.html new file mode 100644 index 0000000..f7baf1f --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.5/classid_2.html @@ -0,0 +1,52 @@ + + + + Trillium Media Design + + + + +
+

Trillium Media Design

+
+ +
+

New Media and Web Design

+

Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:

+ +

Meeting Your Business Needs

+

Our expert designers will listen to you as they create a website that helps to promote and grow your business.

+
+ + + \ No newline at end of file diff --git a/Assignments/lab4_CalebFontenot/public_html/4.6/classid.html b/Assignments/lab4_CalebFontenot/public_html/4.6/classid.html new file mode 100644 index 0000000..ae0684f --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.6/classid.html @@ -0,0 +1,34 @@ + + + + Trillium Media Design + + + + + +
+

Trillium Media Design

+
+ +
+

New Media and Web Design

+

Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:

+ +

Meeting Your Business Needs

+

Our expert designers will listen to you as they create a website that helps to promote and grow your business.

+
+ + + \ No newline at end of file diff --git a/Assignments/lab4_CalebFontenot/public_html/4.6/services.html b/Assignments/lab4_CalebFontenot/public_html/4.6/services.html new file mode 100644 index 0000000..efe7bb1 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.6/services.html @@ -0,0 +1,15 @@ + + + + + TODO supply a title + + + + +
TODO write content
+ + diff --git a/Assignments/lab4_CalebFontenot/public_html/4.6/trillium.css b/Assignments/lab4_CalebFontenot/public_html/4.6/trillium.css new file mode 100644 index 0000000..b7b8ea6 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.6/trillium.css @@ -0,0 +1,37 @@ +/* +Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license +Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template +*/ +/* + Created on : Jan 24, 2023, 9:20:27 AM + Author : caleb +*/ + +body +{ + background-color: #E6E6FA; + color: #191970; +} +h1 { + background-color: #191970; + color: #E6E6FA; +} +h2 { + background-color: #AEAED4; + color: #191970; +} +nav { + background-color: #E2E2EF; +} +footer { + color: #666666; +} +.companyname { + color: #6A6AA7; +} +.feature { + color: #FF0000; +} +#new { + color: #FF00CC; +} \ No newline at end of file diff --git a/Assignments/lab4_CalebFontenot/public_html/4.7/index.html b/Assignments/lab4_CalebFontenot/public_html/4.7/index.html new file mode 100644 index 0000000..3a3876a --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.7/index.html @@ -0,0 +1,21 @@ + + + + + TODO supply a title + + + + + +

This paragraph applies the external and embedded styles — + note how the blue text color that is configured in the embedded styles takes precedence + over the black text color configured in the external stylesheet.

+

Inline styles configure this paragraph to have red text and take precedence over the embedded and external styles.

+ + diff --git a/Assignments/lab4_CalebFontenot/public_html/4.7/site.css b/Assignments/lab4_CalebFontenot/public_html/4.7/site.css new file mode 100644 index 0000000..25cabb6 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/4.7/site.css @@ -0,0 +1,12 @@ +/* +Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license +Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template +*/ +/* + Created on : Jan 24, 2023, 9:28:59 AM + Author : caleb +*/ +body { + background-color: #FFFFCC; + color: #0000FF; +} diff --git a/Assignments/lab4_CalebFontenot/public_html/index.html b/Assignments/lab4_CalebFontenot/public_html/index.html new file mode 100644 index 0000000..716a0f6 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/index.html @@ -0,0 +1,17 @@ + + + + + TODO supply a title + + + + +

Inline CSS

+

This paragraph inherits the styles applied to the body tag.

+

This paragraph overrides the text color style.

+ + diff --git a/Assignments/lab4_CalebFontenot/public_html/index_1.html b/Assignments/lab4_CalebFontenot/public_html/index_1.html new file mode 100644 index 0000000..a36f927 --- /dev/null +++ b/Assignments/lab4_CalebFontenot/public_html/index_1.html @@ -0,0 +1,16 @@ + + + + + TODO supply a title + + + + +

Inline CSS

+

This paragraph inherits the styles applied to the body tag.

+ + diff --git a/ZIPs/lab4_CalebFontenot.zip b/ZIPs/lab4_CalebFontenot.zip new file mode 100644 index 0000000000000000000000000000000000000000..ba88aedcc4e40b3df197c69ef0be4ba28065b734 GIT binary patch literal 21044 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 literal 0 HcmV?d00001