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 0000000..ba88aed Binary files /dev/null and b/ZIPs/lab4_CalebFontenot.zip differ