init
This commit is contained in:
parent
326dbd453a
commit
fe987a5208
3
lab0-CalebFontenot/.bowerrc
Normal file
3
lab0-CalebFontenot/.bowerrc
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"directory": "public_html/bower_components"
|
||||
}
|
9
lab0-CalebFontenot/Gruntfile.js
Normal file
9
lab0-CalebFontenot/Gruntfile.js
Normal file
@ -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({
|
||||
});
|
||||
};
|
13
lab0-CalebFontenot/bower.json
Normal file
13
lab0-CalebFontenot/bower.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "lab0-CalebFontenot",
|
||||
"version": "1.0.0",
|
||||
"main": "path/to/main.css",
|
||||
"ignore": [
|
||||
".jshintrc",
|
||||
"**/*.txt"
|
||||
],
|
||||
"dependencies": {
|
||||
},
|
||||
"devDependencies": {
|
||||
}
|
||||
}
|
10
lab0-CalebFontenot/gulpfile.js
Normal file
10
lab0-CalebFontenot/gulpfile.js
Normal file
@ -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
|
||||
});
|
1
lab0-CalebFontenot/nbproject/private/private.properties
Normal file
1
lab0-CalebFontenot/nbproject/private/private.properties
Normal file
@ -0,0 +1 @@
|
||||
browser=SL[/Browsers/FirefoxBrowser
|
7
lab0-CalebFontenot/nbproject/private/private.xml
Normal file
7
lab0-CalebFontenot/nbproject/private/private.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
|
||||
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
||||
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
||||
<group/>
|
||||
</open-files>
|
||||
</project-private>
|
5
lab0-CalebFontenot/nbproject/project.properties
Normal file
5
lab0-CalebFontenot/nbproject/project.properties
Normal file
@ -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}
|
9
lab0-CalebFontenot/nbproject/project.xml
Normal file
9
lab0-CalebFontenot/nbproject/project.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://www.netbeans.org/ns/project/1">
|
||||
<type>org.netbeans.modules.web.clientproject</type>
|
||||
<configuration>
|
||||
<data xmlns="http://www.netbeans.org/ns/clientside-project/1">
|
||||
<name>lab0-CalebFontenot</name>
|
||||
</data>
|
||||
</configuration>
|
||||
</project>
|
8
lab0-CalebFontenot/package.json
Normal file
8
lab0-CalebFontenot/package.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "lab0-CalebFontenot",
|
||||
"version": "1.0.0",
|
||||
"keywords": ["util", "functional", "server", "client", "browser"],
|
||||
"author": "caleb",
|
||||
"contributors": [],
|
||||
"dependencies": {}
|
||||
}
|
16
lab0-CalebFontenot/public_html/index.html
Normal file
16
lab0-CalebFontenot/public_html/index.html
Normal file
@ -0,0 +1,16 @@
|
||||
<!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>lab0</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<div>Hello World</div>
|
||||
</body>
|
||||
</html>
|
BIN
lab0_CalebFontenot.zip
Normal file
BIN
lab0_CalebFontenot.zip
Normal file
Binary file not shown.
BIN
lab2_CalebFontenot.zip
Normal file
BIN
lab2_CalebFontenot.zip
Normal file
Binary file not shown.
3
lab2_CalebFontenot/.bowerrc
Normal file
3
lab2_CalebFontenot/.bowerrc
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"directory": "public_html/bower_components"
|
||||
}
|
9
lab2_CalebFontenot/Gruntfile.js
Normal file
9
lab2_CalebFontenot/Gruntfile.js
Normal file
@ -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({
|
||||
});
|
||||
};
|
13
lab2_CalebFontenot/bower.json
Normal file
13
lab2_CalebFontenot/bower.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "lab2_CalebFontenot",
|
||||
"version": "1.0.0",
|
||||
"main": "path/to/main.css",
|
||||
"ignore": [
|
||||
".jshintrc",
|
||||
"**/*.txt"
|
||||
],
|
||||
"dependencies": {
|
||||
},
|
||||
"devDependencies": {
|
||||
}
|
||||
}
|
10
lab2_CalebFontenot/gulpfile.js
Normal file
10
lab2_CalebFontenot/gulpfile.js
Normal file
@ -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
|
||||
});
|
1
lab2_CalebFontenot/nbproject/private/private.properties
Normal file
1
lab2_CalebFontenot/nbproject/private/private.properties
Normal file
@ -0,0 +1 @@
|
||||
browser=SL[/Browsers/FirefoxBrowser
|
7
lab2_CalebFontenot/nbproject/private/private.xml
Normal file
7
lab2_CalebFontenot/nbproject/private/private.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
|
||||
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
|
||||
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
|
||||
<group/>
|
||||
</open-files>
|
||||
</project-private>
|
5
lab2_CalebFontenot/nbproject/project.properties
Normal file
5
lab2_CalebFontenot/nbproject/project.properties
Normal file
@ -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}
|
9
lab2_CalebFontenot/nbproject/project.xml
Normal file
9
lab2_CalebFontenot/nbproject/project.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://www.netbeans.org/ns/project/1">
|
||||
<type>org.netbeans.modules.web.clientproject</type>
|
||||
<configuration>
|
||||
<data xmlns="http://www.netbeans.org/ns/clientside-project/1">
|
||||
<name>lab2_CalebFontenot</name>
|
||||
</data>
|
||||
</configuration>
|
||||
</project>
|
8
lab2_CalebFontenot/package.json
Normal file
8
lab2_CalebFontenot/package.json
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "lab2_CalebFontenot",
|
||||
"version": "1.0.0",
|
||||
"keywords": ["util", "functional", "server", "client", "browser"],
|
||||
"author": "caleb",
|
||||
"contributors": [],
|
||||
"dependencies": {}
|
||||
}
|
20
lab2_CalebFontenot/public_html/2.1.html
Normal file
20
lab2_CalebFontenot/public_html/2.1.html
Normal file
@ -0,0 +1,20 @@
|
||||
<!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>lab2</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Heading Level 1</h1>
|
||||
<h2>Heading Level 2</h2>
|
||||
<h3>Heading Level 3</h3>
|
||||
<h4>Heading Level 4</h4>
|
||||
<h5>Heading Level 5</h5>
|
||||
<h6>Heading Level 6</h6>
|
||||
</body>
|
||||
</html>
|
24
lab2_CalebFontenot/public_html/2.2.html
Normal file
24
lab2_CalebFontenot/public_html/2.2.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!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>lab2</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Heading Level 1</h1>
|
||||
<p> 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.</p>
|
||||
<h2>Heading Level 2</h2>
|
||||
<h3>Heading Level 3</h3>
|
||||
<h4>Heading Level 4</h4>
|
||||
<h5>Heading Level 5</h5>
|
||||
<h6>Heading Level 6</h6>
|
||||
</body>
|
||||
</html>
|
24
lab2_CalebFontenot/public_html/2.3.html
Normal file
24
lab2_CalebFontenot/public_html/2.3.html
Normal file
@ -0,0 +1,24 @@
|
||||
<!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>lab2</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Heading Level 1</h1>
|
||||
<p> This is a sample paragraph. <br>
|
||||
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.</p>
|
||||
<h2>Heading Level 2</h2>
|
||||
<h3>Heading Level 3</h3>
|
||||
<h4>Heading Level 4</h4>
|
||||
<h5>Heading Level 5</h5>
|
||||
<h6>Heading Level 6</h6>
|
||||
</body>
|
||||
</html>
|
25
lab2_CalebFontenot/public_html/2.4.html
Normal file
25
lab2_CalebFontenot/public_html/2.4.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!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>lab2</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Heading Level 1</h1>
|
||||
<p> This is a sample paragraph. <br>
|
||||
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.</p>
|
||||
<hr>
|
||||
<h2>Heading Level 2</h2>
|
||||
<h3>Heading Level 3</h3>
|
||||
<h4>Heading Level 4</h4>
|
||||
<h5>Heading Level 5</h5>
|
||||
<h6>Heading Level 6</h6>
|
||||
</body>
|
||||
</html>
|
23
lab2_CalebFontenot/public_html/2.5.html
Normal file
23
lab2_CalebFontenot/public_html/2.5.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!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>Blockquote Example</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
<body>
|
||||
<h1>The Power of The Web</h1><!-- comment -->
|
||||
<p>According to Tim Berners-Lee, the inventer of the World Wide Web,
|
||||
at http://www.w3.org/WAI/:
|
||||
</p><!-- comment -->
|
||||
<blockquote>
|
||||
The Power of the Web is in its universality.
|
||||
Access by everyone regardless of disability is
|
||||
an essential aspect.
|
||||
</blockquote>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user