Skip to content

Commit

Permalink
added the rest of the source files
Browse files Browse the repository at this point in the history
  • Loading branch information
hhaslam11 committed Feb 26, 2016
1 parent 5f49d4c commit 08d4cd6
Show file tree
Hide file tree
Showing 22 changed files with 336 additions and 0 deletions.
20 changes: 20 additions & 0 deletions XHTML and CSS/Tut-31_Id's/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
#bobby {border: 2px solid red;
position: absolute;
top:15px;
left:25px;}
#hobart {border:2px solid green;
position: absolute;
top: 65px;
left: 5px;}
</style>
</head>
<body>
<div id="bobby">bobby is the ebst</div>
<div id="hobart">hobart is the coolest</div>
</body>
</html>
15 changes: 15 additions & 0 deletions XHTML and CSS/Tut-32_Child Selector/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
p > a {color:red;
font-size:30px;}
</style>
</head>
<body>
<a href="http://thenewboston.com">first</a>
<p><a href="http://thenewboston.com">second</a></p>
<h3><a href="http//thenewboston.com">third</a></h3>
</body>
</html>
16 changes: 16 additions & 0 deletions XHTML and CSS/Tut-33_Pseudo Elements/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
p:first-letter {font-weight:bold;
font-size:30px;
color:green;}
</style>
</head>
<body>
<p>paul did u hear miley cyrus player vbeer pong with the ursusians</p>
<p>omgwtfbbq</p>
<p>oh, billy!</p>
</body>
</html>
7 changes: 7 additions & 0 deletions XHTML and CSS/Tut-34_External Style Sheets/donkey.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
h1 {color:blue;}

p{font-family:Tahoma;
color:red;
font-size:20px;}

a{color:orange};
12 changes: 12 additions & 0 deletions XHTML and CSS/Tut-34_External Style Sheets/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>

<html>
<head>
<link rel="stylesheet" type="text/css" href="donkey.css"/>
</head>
<body>
<h1>this is the index page!</h1>
<p>my naeis parry the aprrot i am a prahgraj</p>
<a href="second.html">cick me i dare ya to</a>
</body>
</html>
12 changes: 12 additions & 0 deletions XHTML and CSS/Tut-34_External Style Sheets/second.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>

<html>
<head>
<link rel="stylesheet" type="text/css" href="donkey.css"/>
</head>
<body>
<h1>second!</h1>
<p>my naeis parry the aprrot i am a prahgraj</p>
<a href="index.html">cick me i dare ya to</a>
</body>
</html>
7 changes: 7 additions & 0 deletions XHTML and CSS/Tut-35_Overriding Styles/donkey.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
h1 {color:blue;}

p{font-family:Tahoma;
color:red;
font-size:20px;}

a{color:orange};
16 changes: 16 additions & 0 deletions XHTML and CSS/Tut-35_Overriding Styles/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>

<html>
<head>
<link rel="stylesheet" type="text/css" href="donkey.css"/>

<style type="text/css">
h1 {color:green;}
</style>
</head>
<body>
<h1>this is the index page!</h1>
<p>my naeis parry the aprrot i am a prahgraj</p>
<a href="second.html">cick me i dare ya to</a>
</body>
</html>
12 changes: 12 additions & 0 deletions XHTML and CSS/Tut-35_Overriding Styles/second.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>

<html>
<head>
<link rel="stylesheet" type="text/css" href="donkey.css"/>
</head>
<body>
<h1>second!</h1>
<p>my naeis parry the aprrot i am a prahgraj</p>
<a href="index.html">cick me i dare ya to</a>
</body>
</html>
25 changes: 25 additions & 0 deletions XHTML and CSS/Tut-36_Absolute Positioning/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
#apples {border:2px solid red;
position:absolute;
width: 150px;
height: 175px;
top: 40px;
left: 115px;}

#blueberry {border:2px solid blue;
position:absolute;
width: 150px;
height: 175px;
top: 30px;
left: 15px;}
</style>
</head>
<body>
<div id="apples">i amt he apple box</div>
<div id="blueberry">yo soy un blueberryy</div>
</body>
</html>
18 changes: 18 additions & 0 deletions XHTML and CSS/Tut-37_Relative Positioning/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
#third {border:1px solid green;
position:relative;
top:60px;
left:30px;}
</style>
</head>
<body>
<p>first</p>
<p>second</p>
<p id="third">third</p>
<p>fourth</p>
</body>
</html>
56 changes: 56 additions & 0 deletions XHTML and CSS/Tut-38_Fixed Positioning/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
#tuna {border:2px solid green;
position:fixed;
top:60px;
left:64px;}
</style>
</head>
<body>
<p id="tuna">tuna mctuna man</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
<p>i ma the sandman let me in</p>
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions XHTML and CSS/Tut-39_Max Width and Height/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
img {max-height: 200px;
max-width:200px;}
</style>
</head>
<body>
<img src="myface.png" />
<img src="madden1.jpg" />
<img src="cell.png" />
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions XHTML and CSS/Tut-40_Introduction to Forms/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">

</style>
</head>
<body>
<form>
Username: <input type="text" name="username" value="Enter Name Here"/>
</form>
</body>
</html>
22 changes: 22 additions & 0 deletions XHTML and CSS/Tut-41_Check Boxes and Radio Buttons/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<form>
Username: <input type="text" name="username" value="Enter Name Here"/>
<br />
Male: <input type="radio" name="sex" value="male" />
Female: <input type="radio" name="sex" value="female" />
<br />
<p>Select the foods that you would like to order!</p>
Bacon <input type="checkbox" name="food" value="bacon" />
Ham <input type="checkbox" name="food" value="ham" />
Tuna <input type="checkbox" name="food" value="tuna" />
Soda Pop <input type="checkbox" name="food" value="soda" />
</form>
</body>
</html>
20 changes: 20 additions & 0 deletions XHTML and CSS/Tut-42_Drop Down Lists/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<form>
What do you want to do today?
<select name="activities">
<option value="play">play the guitar</option>
<option value="your">comb your hair</option>
<option value="someonelse">comb someone elses hair</option>
<option value="opossum">teach a opossum tot ango</option>
<option value="shave">shave</option>
</select>
</form>
</body>
</html>
17 changes: 17 additions & 0 deletions XHTML and CSS/Tut-43_Text Areas/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<form>
Tell me about yourself:
<br/>
<textarea name="bio" rows="8" cols="40">
Type somwethign here
</textarea>
</form>
</body>
</html>
15 changes: 15 additions & 0 deletions XHTML and CSS/Tut-44_Passwords and Upload Buttons/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<form>
Password: <input type="password" name="pword"/>
<p>Nowsubmit a file!</p>
<input type="file" name="buckysfile"/>
</form>
</body>
</html>
17 changes: 17 additions & 0 deletions XHTML and CSS/Tut-45_Submitting Forms/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>

<html>
<head>
<style type="text/css">
</style>
</head>
<body>
<form action="dosomething" method="post">
Username: <input type="text" name="username" />
<br />
Password: <input type="password" name="pass" />
<br />
<input type="submit" value="Submit!">
</form>
</body>
</html>

0 comments on commit 08d4cd6

Please sign in to comment.