From fe987a5208dcf9dc15ab3aaadadf9128aeb931b0 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Wed, 11 Jan 2023 10:40:55 -0600 Subject: [PATCH] init --- lab0-CalebFontenot/.bowerrc | 3 +++ lab0-CalebFontenot/Gruntfile.js | 9 +++++++ lab0-CalebFontenot/bower.json | 13 +++++++++ lab0-CalebFontenot/gulpfile.js | 10 +++++++ .../nbproject/private/private.properties | 1 + .../nbproject/private/private.xml | 7 +++++ .../nbproject/project.properties | 5 ++++ lab0-CalebFontenot/nbproject/project.xml | 9 +++++++ lab0-CalebFontenot/package.json | 8 ++++++ lab0-CalebFontenot/public_html/index.html | 16 +++++++++++ lab0_CalebFontenot.zip | Bin 0 -> 3065 bytes lab2_CalebFontenot.zip | Bin 0 -> 5454 bytes lab2_CalebFontenot/.bowerrc | 3 +++ lab2_CalebFontenot/Gruntfile.js | 9 +++++++ lab2_CalebFontenot/bower.json | 13 +++++++++ lab2_CalebFontenot/gulpfile.js | 10 +++++++ .../nbproject/private/private.properties | 1 + .../nbproject/private/private.xml | 7 +++++ .../nbproject/project.properties | 5 ++++ lab2_CalebFontenot/nbproject/project.xml | 9 +++++++ lab2_CalebFontenot/package.json | 8 ++++++ lab2_CalebFontenot/public_html/2.1.html | 20 ++++++++++++++ lab2_CalebFontenot/public_html/2.2.html | 24 +++++++++++++++++ lab2_CalebFontenot/public_html/2.3.html | 24 +++++++++++++++++ lab2_CalebFontenot/public_html/2.4.html | 25 ++++++++++++++++++ lab2_CalebFontenot/public_html/2.5.html | 23 ++++++++++++++++ 26 files changed, 262 insertions(+) create mode 100644 lab0-CalebFontenot/.bowerrc create mode 100644 lab0-CalebFontenot/Gruntfile.js create mode 100644 lab0-CalebFontenot/bower.json create mode 100644 lab0-CalebFontenot/gulpfile.js create mode 100644 lab0-CalebFontenot/nbproject/private/private.properties create mode 100644 lab0-CalebFontenot/nbproject/private/private.xml create mode 100644 lab0-CalebFontenot/nbproject/project.properties create mode 100644 lab0-CalebFontenot/nbproject/project.xml create mode 100644 lab0-CalebFontenot/package.json create mode 100644 lab0-CalebFontenot/public_html/index.html create mode 100644 lab0_CalebFontenot.zip create mode 100644 lab2_CalebFontenot.zip create mode 100644 lab2_CalebFontenot/.bowerrc create mode 100644 lab2_CalebFontenot/Gruntfile.js create mode 100644 lab2_CalebFontenot/bower.json create mode 100644 lab2_CalebFontenot/gulpfile.js create mode 100644 lab2_CalebFontenot/nbproject/private/private.properties create mode 100644 lab2_CalebFontenot/nbproject/private/private.xml create mode 100644 lab2_CalebFontenot/nbproject/project.properties create mode 100644 lab2_CalebFontenot/nbproject/project.xml create mode 100644 lab2_CalebFontenot/package.json create mode 100644 lab2_CalebFontenot/public_html/2.1.html create mode 100644 lab2_CalebFontenot/public_html/2.2.html create mode 100644 lab2_CalebFontenot/public_html/2.3.html create mode 100644 lab2_CalebFontenot/public_html/2.4.html create mode 100644 lab2_CalebFontenot/public_html/2.5.html diff --git a/lab0-CalebFontenot/.bowerrc b/lab0-CalebFontenot/.bowerrc new file mode 100644 index 0000000..0ba26f2 --- /dev/null +++ b/lab0-CalebFontenot/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "public_html/bower_components" +} diff --git a/lab0-CalebFontenot/Gruntfile.js b/lab0-CalebFontenot/Gruntfile.js new file mode 100644 index 0000000..496183b --- /dev/null +++ b/lab0-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/lab0-CalebFontenot/bower.json b/lab0-CalebFontenot/bower.json new file mode 100644 index 0000000..743324b --- /dev/null +++ b/lab0-CalebFontenot/bower.json @@ -0,0 +1,13 @@ +{ + "name": "lab0-CalebFontenot", + "version": "1.0.0", + "main": "path/to/main.css", + "ignore": [ + ".jshintrc", + "**/*.txt" + ], + "dependencies": { + }, + "devDependencies": { + } +} diff --git a/lab0-CalebFontenot/gulpfile.js b/lab0-CalebFontenot/gulpfile.js new file mode 100644 index 0000000..eccfb02 --- /dev/null +++ b/lab0-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/lab0-CalebFontenot/nbproject/private/private.properties b/lab0-CalebFontenot/nbproject/private/private.properties new file mode 100644 index 0000000..7b91381 --- /dev/null +++ b/lab0-CalebFontenot/nbproject/private/private.properties @@ -0,0 +1 @@ +browser=SL[/Browsers/FirefoxBrowser diff --git a/lab0-CalebFontenot/nbproject/private/private.xml b/lab0-CalebFontenot/nbproject/private/private.xml new file mode 100644 index 0000000..6807a2b --- /dev/null +++ b/lab0-CalebFontenot/nbproject/private/private.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/lab0-CalebFontenot/nbproject/project.properties b/lab0-CalebFontenot/nbproject/project.properties new file mode 100644 index 0000000..31aa73e --- /dev/null +++ b/lab0-CalebFontenot/nbproject/project.properties @@ -0,0 +1,5 @@ +file.reference.lab0-CalebFontenot-public_html=public_html +file.reference.lab0-CalebFontenot-test=test +files.encoding=UTF-8 +site.root.folder=${file.reference.lab0-CalebFontenot-public_html} +test.folder=${file.reference.lab0-CalebFontenot-test} diff --git a/lab0-CalebFontenot/nbproject/project.xml b/lab0-CalebFontenot/nbproject/project.xml new file mode 100644 index 0000000..c4cac5a --- /dev/null +++ b/lab0-CalebFontenot/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + lab0-CalebFontenot + + + diff --git a/lab0-CalebFontenot/package.json b/lab0-CalebFontenot/package.json new file mode 100644 index 0000000..9c2ab00 --- /dev/null +++ b/lab0-CalebFontenot/package.json @@ -0,0 +1,8 @@ +{ + "name": "lab0-CalebFontenot", + "version": "1.0.0", + "keywords": ["util", "functional", "server", "client", "browser"], + "author": "caleb", + "contributors": [], + "dependencies": {} +} diff --git a/lab0-CalebFontenot/public_html/index.html b/lab0-CalebFontenot/public_html/index.html new file mode 100644 index 0000000..ba4e461 --- /dev/null +++ b/lab0-CalebFontenot/public_html/index.html @@ -0,0 +1,16 @@ + + + + + lab0 + + + + +
Hello World
+ + diff --git a/lab0_CalebFontenot.zip b/lab0_CalebFontenot.zip new file mode 100644 index 0000000000000000000000000000000000000000..a6b34bbe07a3a195e82b4f0ca812415925fa1c38 GIT binary patch literal 3065 zcmWIWW@h1HVBlb2nChYx#()Hbf$W^bBm-UN#GKS5xBR@4)V%x>{Q#f_5e5zp4h#*_ z*fr=S<(H=x6(z5J7R11`bjq1USDsAzv&c(Tn{{c^r6qIDJo(Wx>5k0bC4W9$S@h${ zpF2%|_FUOBDM@u*lpaHXH#N8@GyYmV=X(eEG}F{wyAttA4Rp zL4T@DO!E0~bBE%7kA{g)Uf!Oe_*7uyl&svXwm)7l9X=VDuQ6-V*7H9Cp49w)eN@X1|5J_xn}oqH3A zaYw2gb`PbO<`lrZ2LJ`W6ts!t$pitYHnMfH@?`JU%tN8Sa#0C3EDp-?cBEQ zs*rr5If29YWkKSJCq`mV<)c@fbL`7Y*(FlH{i@`?;@6*Fq^vugblpbt>jh5VqkNt9 zUEX)f-`-!l&C686<$3mf-REV}H-vh2NL*O|A#6oI$JPu9wLTtc;kb<|I?5T0K64`e zUV9-A3JIZOE1vEH`qLg7wb(Nwj;PH`Dk#d&N=?R>E%mVnB0?+F2t6QOkXlrdnOf|9 z`i$pQZ7*MMU9Yp=epgR>`WRg(^*iI~TXg!ow&&T?`WJOId{3S9={v7+^6W;}q~fK5 zS0X1x#Uybn9mwkb+VJXAu+isBxz5gaN_2O08GARdJ$XL;#nPwGmn;#xxhh21O!y@0 z))w7;!m@Jv-!e(dtMg+o%$Jwai<6kVm(ulo73A5P3?1l>=C%Y|EXsFLaw~8ZBF7(X%9+Uu#D6rsA_12S0Oa#YHoF zyq+XdTyb-?Y@Dw(-z=tEi_TUp_WXZvqs+HujVb+KtXp?6rL3g ze@4KuBUctA+kZK{&iXmhRxoxCMI_sFg;JJ8N${meEUG#pS2Kq(RYCX7S@puB@j4bA_ay)GHOabd z?D_NkNS|zvR^*yXlS2+FrTfMm15hmk0{~gi0fPVl literal 0 HcmV?d00001 diff --git a/lab2_CalebFontenot.zip b/lab2_CalebFontenot.zip new file mode 100644 index 0000000000000000000000000000000000000000..9a3b634a6ccafce854e6b927dc18ed7d17b36c0a GIT binary patch literal 5454 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 Cnz^ + + + + + + diff --git a/lab2_CalebFontenot/nbproject/project.properties b/lab2_CalebFontenot/nbproject/project.properties new file mode 100644 index 0000000..de60ba8 --- /dev/null +++ b/lab2_CalebFontenot/nbproject/project.properties @@ -0,0 +1,5 @@ +file.reference.lab2_CalebFontenot-public_html=public_html +file.reference.lab2_CalebFontenot-test=test +files.encoding=UTF-8 +site.root.folder=${file.reference.lab2_CalebFontenot-public_html} +test.folder=${file.reference.lab2_CalebFontenot-test} diff --git a/lab2_CalebFontenot/nbproject/project.xml b/lab2_CalebFontenot/nbproject/project.xml new file mode 100644 index 0000000..ad61c42 --- /dev/null +++ b/lab2_CalebFontenot/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + lab2_CalebFontenot + + + diff --git a/lab2_CalebFontenot/package.json b/lab2_CalebFontenot/package.json new file mode 100644 index 0000000..ed5f3ad --- /dev/null +++ b/lab2_CalebFontenot/package.json @@ -0,0 +1,8 @@ +{ + "name": "lab2_CalebFontenot", + "version": "1.0.0", + "keywords": ["util", "functional", "server", "client", "browser"], + "author": "caleb", + "contributors": [], + "dependencies": {} +} diff --git a/lab2_CalebFontenot/public_html/2.1.html b/lab2_CalebFontenot/public_html/2.1.html new file mode 100644 index 0000000..f41ec74 --- /dev/null +++ b/lab2_CalebFontenot/public_html/2.1.html @@ -0,0 +1,20 @@ + + + + + lab2 + + + + +

Heading Level 1

+

Heading Level 2

+

Heading Level 3

+

Heading Level 4

+
Heading Level 5
+
Heading Level 6
+ + diff --git a/lab2_CalebFontenot/public_html/2.2.html b/lab2_CalebFontenot/public_html/2.2.html new file mode 100644 index 0000000..a179e66 --- /dev/null +++ b/lab2_CalebFontenot/public_html/2.2.html @@ -0,0 +1,24 @@ + + + + + lab2 + + + + +

Heading Level 1

+

This is a sample paragraph. + Heading tags can help to make your pages more accessible and usable. + It is good coding practice to use heading tags to outline + the structure of your web page content.

+

Heading Level 2

+

Heading Level 3

+

Heading Level 4

+
Heading Level 5
+
Heading Level 6
+ + \ No newline at end of file diff --git a/lab2_CalebFontenot/public_html/2.3.html b/lab2_CalebFontenot/public_html/2.3.html new file mode 100644 index 0000000..6703e99 --- /dev/null +++ b/lab2_CalebFontenot/public_html/2.3.html @@ -0,0 +1,24 @@ + + + + + lab2 + + + + +

Heading Level 1

+

This is a sample paragraph.
+ Heading tags can help to make your pages more accessible and usable. + It is good coding practice to use heading tags to outline + the structure of your web page content.

+

Heading Level 2

+

Heading Level 3

+

Heading Level 4

+
Heading Level 5
+
Heading Level 6
+ + \ No newline at end of file diff --git a/lab2_CalebFontenot/public_html/2.4.html b/lab2_CalebFontenot/public_html/2.4.html new file mode 100644 index 0000000..b665dcb --- /dev/null +++ b/lab2_CalebFontenot/public_html/2.4.html @@ -0,0 +1,25 @@ + + + + + lab2 + + + + +

Heading Level 1

+

This is a sample paragraph.
+ Heading tags can help to make your pages more accessible and usable. + It is good coding practice to use heading tags to outline + the structure of your web page content.

+
+

Heading Level 2

+

Heading Level 3

+

Heading Level 4

+
Heading Level 5
+
Heading Level 6
+ + \ No newline at end of file diff --git a/lab2_CalebFontenot/public_html/2.5.html b/lab2_CalebFontenot/public_html/2.5.html new file mode 100644 index 0000000..7e9a188 --- /dev/null +++ b/lab2_CalebFontenot/public_html/2.5.html @@ -0,0 +1,23 @@ + + + + + Blockquote Example + + + + +

The Power of The Web

+

According to Tim Berners-Lee, the inventer of the World Wide Web, + at http://www.w3.org/WAI/: +

+
+ The Power of the Web is in its universality. + Access by everyone regardless of disability is + an essential aspect. +
+ +