begin lab8
This commit is contained in:
3
Assignments/lab08_CalebFontenot/.bowerrc
Normal file
3
Assignments/lab08_CalebFontenot/.bowerrc
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"directory": "public_html/bower_components"
|
||||
}
|
9
Assignments/lab08_CalebFontenot/Gruntfile.js
Normal file
9
Assignments/lab08_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
Assignments/lab08_CalebFontenot/bower.json
Normal file
13
Assignments/lab08_CalebFontenot/bower.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"name": "lab08_CalebFontenot",
|
||||
"version": "1.0.0",
|
||||
"main": "path/to/main.css",
|
||||
"ignore": [
|
||||
".jshintrc",
|
||||
"**/*.txt"
|
||||
],
|
||||
"dependencies": {
|
||||
},
|
||||
"devDependencies": {
|
||||
}
|
||||
}
|
10
Assignments/lab08_CalebFontenot/gulpfile.js
Normal file
10
Assignments/lab08_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
|
||||
});
|
@@ -0,0 +1,5 @@
|
||||
file.reference.lab08_CalebFontenot-public_html=public_html
|
||||
file.reference.lab08_CalebFontenot-test=test
|
||||
files.encoding=UTF-8
|
||||
site.root.folder=${file.reference.lab08_CalebFontenot-public_html}
|
||||
test.folder=${file.reference.lab08_CalebFontenot-test}
|
9
Assignments/lab08_CalebFontenot/nbproject/project.xml
Normal file
9
Assignments/lab08_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>lab08_CalebFontenot</name>
|
||||
</data>
|
||||
</configuration>
|
||||
</project>
|
8
Assignments/lab08_CalebFontenot/package.json
Normal file
8
Assignments/lab08_CalebFontenot/package.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "lab08_CalebFontenot",
|
||||
"version": "1.0.0",
|
||||
"keywords": ["util", "functional", "server", "client", "browser"],
|
||||
"author": "caleb",
|
||||
"contributors": [],
|
||||
"dependencies": {}
|
||||
}
|
55
Assignments/lab08_CalebFontenot/public_html/8.1/casita.css
Executable file
55
Assignments/lab08_CalebFontenot/public_html/8.1/casita.css
Executable file
@@ -0,0 +1,55 @@
|
||||
* { box-sizing: border-box; }
|
||||
body { background-color: #330000;
|
||||
font-family: Verdana, Arial, sans-serif;
|
||||
}
|
||||
#wrapper { width: 960px;
|
||||
margin: auto;
|
||||
background-color: #F4E8BC;
|
||||
color: #330000;
|
||||
box-shadow: 5px 5px 5px #000000;
|
||||
}
|
||||
h1 { background-image: url(images/logo.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-color: #F4E8BC;
|
||||
height: 130px;
|
||||
font-family: Georgia, "Times New Roman", serif;
|
||||
font-size: 4.5em;
|
||||
padding-left: 220px;
|
||||
padding-top: 20px;
|
||||
text-shadow: 3px 3px 3px #90745D;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
nav { padding-top: 10px;
|
||||
float: left;
|
||||
width: 200px;
|
||||
}
|
||||
nav ul { list-style-type: none;
|
||||
padding-left: 20px;
|
||||
}
|
||||
nav li { padding-bottom: 5px;
|
||||
font-weight: bold;
|
||||
}
|
||||
nav a { text-decoration: none; }
|
||||
nav a:link { color: #330000; }
|
||||
nav a:visited{ color: #90745D; }
|
||||
nav a:hover { color: #3F4632; }
|
||||
|
||||
|
||||
main { background-color: #FFFFCC;
|
||||
margin-left: 200px;
|
||||
padding: 1px 20px 20px 20px;
|
||||
min-height: 300px;
|
||||
display: block;
|
||||
}
|
||||
main img { float: right;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
footer { background-color: #FFFFCC;
|
||||
margin-left: 200px;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
font-size: small;
|
||||
font-style: italic;
|
||||
}
|
||||
|
33
Assignments/lab08_CalebFontenot/public_html/8.1/contact.html
Executable file
33
Assignments/lab08_CalebFontenot/public_html/8.1/contact.html
Executable file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Casita Sedona - Contact</title>
|
||||
<meta charset="utf-8">
|
||||
<link href="casita.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<header>
|
||||
<h1>Casita Sedona</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="rooms/canyon.html">Canyon Room</a></li>
|
||||
<li><a href="rooms/javelina.html">Javelina Room</a></li>
|
||||
<li><a href="rooms/juniper.html">Juniper Room</a></li>
|
||||
<li><a href="events/weekend.html">Weekend Events</a></li>
|
||||
<li><a href="events/festival.html">Festivals</a></li>
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>This is the Contact Page </h2>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
33
Assignments/lab08_CalebFontenot/public_html/8.1/events/festival.html
Executable file
33
Assignments/lab08_CalebFontenot/public_html/8.1/events/festival.html
Executable file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Casita Sedona - Festival Events</title>
|
||||
<meta charset="utf-8">
|
||||
<link href="../casita.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<header>
|
||||
<h1>Casita Sedona</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
<li><a href="../rooms/canyon.html">Canyon Room</a></li>
|
||||
<li><a href="../rooms/javelina.html">Javelina Room</a></li>
|
||||
<li><a href="../rooms/juniper.html">Juniper Room</a></li>
|
||||
<li><a href="weekend.html">Weekend Events</a></li>
|
||||
<li><a href="festival.html">Festivals</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>This is the Festival Events Page </h2>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
33
Assignments/lab08_CalebFontenot/public_html/8.1/events/weekend.html
Executable file
33
Assignments/lab08_CalebFontenot/public_html/8.1/events/weekend.html
Executable file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Casita Sedona - Weekend Events</title>
|
||||
<meta charset="utf-8">
|
||||
<link href="../casita.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<header>
|
||||
<h1>Casita Sedona</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
<li><a href="../rooms/canyon.html">Canyon Room</a></li>
|
||||
<li><a href="../rooms/javelina.html">Javelina Room</a></li>
|
||||
<li><a href="../rooms/juniper.html">Juniper Room</a></li>
|
||||
<li><a href="weekend.html">Weekend Events</a></li>
|
||||
<li><a href="festival.html">Festivals</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>This is the Weekend Events Page </h2>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
BIN
Assignments/lab08_CalebFontenot/public_html/8.1/images/logo.gif
Executable file
BIN
Assignments/lab08_CalebFontenot/public_html/8.1/images/logo.gif
Executable file
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
BIN
Assignments/lab08_CalebFontenot/public_html/8.1/images/scenery.jpg
Executable file
BIN
Assignments/lab08_CalebFontenot/public_html/8.1/images/scenery.jpg
Executable file
Binary file not shown.
After Width: | Height: | Size: 33 KiB |
37
Assignments/lab08_CalebFontenot/public_html/8.1/index.html
Executable file
37
Assignments/lab08_CalebFontenot/public_html/8.1/index.html
Executable file
@@ -0,0 +1,37 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Casita Sedona</title>
|
||||
<meta charset="utf-8">
|
||||
<link href="casita.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<header>
|
||||
<h1>Casita Sedona</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="rooms/canyon.html">Canyon Room</a></li>
|
||||
<li><a href="rooms/javelina.html">Javelina Room</a></li>
|
||||
<li><a href="rooms/juniper.html">Juniper Room</a></li>
|
||||
<li><a href="events/weekend.html">Weekend Events</a></li>
|
||||
<li><a href="events/festival.html">Festivals</a></li>
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>This is the Home Page</h2>
|
||||
<img src="images/scenery.jpg" alt="Sedona Scenery" width="450" height="200">
|
||||
<h3>This is a Subheading</h3>
|
||||
<p>This is a paragraph of sentences. This is a paragraph of sentences. This is a paragraph of sentences. This is a paragraph of sentences. This is a paragraph of sentences. This is a paragraph of sentences. </p>
|
||||
<h3>This is a Subheading</h3>
|
||||
<p>This is a paragraph of sentences. This is a paragraph of sentences. This is a paragraph of sentences. This is a paragraph of sentences. This is a paragraph of sentences. This is a paragraph of sentences. </p>
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
33
Assignments/lab08_CalebFontenot/public_html/8.1/rooms/canyon.html
Executable file
33
Assignments/lab08_CalebFontenot/public_html/8.1/rooms/canyon.html
Executable file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Casita Sedona - Canyon Room</title>
|
||||
<meta charset="utf-8">
|
||||
<link href="../casita.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<header>
|
||||
<h1>Casita Sedona</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
<li><a href="canyon.html">Canyon Room</a></li>
|
||||
<li><a href="javelina.html">Javelina Room</a></li>
|
||||
<li><a href="juniper.html">Juniper Room</a></li>
|
||||
<li><a href="../events/weekend.html">Weekend Events</a></li>
|
||||
<li><a href="../events/festival.html">Festivals</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>This is the Canyon Room Page </h2>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
33
Assignments/lab08_CalebFontenot/public_html/8.1/rooms/javelina.html
Executable file
33
Assignments/lab08_CalebFontenot/public_html/8.1/rooms/javelina.html
Executable file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Casita Sedona - Javalina Room</title>
|
||||
<meta charset="utf-8">
|
||||
<link href="../casita.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<header>
|
||||
<h1>Casita Sedona</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
<li><a href="canyon.html">Canyon Room</a></li>
|
||||
<li><a href="javelina.html">Javelina Room</a></li>
|
||||
<li><a href="juniper.html">Juniper Room</a></li>
|
||||
<li><a href="../events/weekend.html">Weekend Events</a></li>
|
||||
<li><a href="../events/festival.html">Festivals</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>This is the Javelina Room Page </h2>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
33
Assignments/lab08_CalebFontenot/public_html/8.1/rooms/juniper.html
Executable file
33
Assignments/lab08_CalebFontenot/public_html/8.1/rooms/juniper.html
Executable file
@@ -0,0 +1,33 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Casita Sedona - Canyon Room</title>
|
||||
<meta charset="utf-8">
|
||||
<link href="../casita.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="wrapper">
|
||||
<header>
|
||||
<h1>Casita Sedona</h1>
|
||||
</header>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
<li><a href="canyon.html">Canyon Room</a></li>
|
||||
<li><a href="javelina.html">Javelina Room</a></li>
|
||||
<li><a href="juniper.html">Juniper Room</a></li>
|
||||
<li><a href="../events/weekend.html">Weekend Events</a></li>
|
||||
<li><a href="../events/festival.html">Festivals</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>This is the Juniper Room Page </h2>
|
||||
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
15
Assignments/lab08_CalebFontenot/public_html/index.html
Normal file
15
Assignments/lab08_CalebFontenot/public_html/index.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<!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>
|
||||
<div>TODO write content</div>
|
||||
</body>
|
||||
</html>
|
56
Assignments/lab08_CalebFontenot/public_html/starter1.html
Executable file
56
Assignments/lab08_CalebFontenot/public_html/starter1.html
Executable file
@@ -0,0 +1,56 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Favorite Sites</title>
|
||||
<meta charset="utf-8">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Favorite Sites</h1>
|
||||
<ul>
|
||||
<li>Hobbies</li>
|
||||
<li>HTML5</li>
|
||||
<li>CSS</li>
|
||||
</ul>
|
||||
<h2 id="hobbies">Hobbies</h2>
|
||||
<dl>
|
||||
<dt>Running</dt>
|
||||
<dd><a href="http://www.runningnetwork.com">http://www.runningnetwork.com</a></dd>
|
||||
<dt>Cooking</dt>
|
||||
<dd><a href="http://www.cooking.com">http://www.cooking.com</a></dd>
|
||||
</dl>
|
||||
<h2 id="html5">HTML5</h2>
|
||||
<dl>
|
||||
<dt>Elements</dt>
|
||||
<dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
|
||||
<dt>Tutorials</dt>
|
||||
<dd><a href="http://www.w3schools.com/html5">http://www.w3schools.com/html5</a></dd>
|
||||
</dl>
|
||||
<h2 id="css">CSS</h2>
|
||||
<dl>
|
||||
<dt>W3C Cascading Style Sheets</dt>
|
||||
<dd><a href="http://www.w3.org/Style/CSS">http://www.w3.org/Style/CSS</a></dd>
|
||||
<dt>Tutorials</dt>
|
||||
<dd><a href="http://www.w3schools.com/css3">http://www.w3schools.com/css3</a></dd>
|
||||
</dl>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<h2>Back to Top</h2>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user