Skip to content

Commit 08d4cd6

Browse files
committed
added the rest of the source files
1 parent 5f49d4c commit 08d4cd6

File tree

22 files changed

+336
-0
lines changed

22 files changed

+336
-0
lines changed

XHTML and CSS/Tut-31_Id's/index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<style type="text/css">
6+
#bobby {border: 2px solid red;
7+
position: absolute;
8+
top:15px;
9+
left:25px;}
10+
#hobart {border:2px solid green;
11+
position: absolute;
12+
top: 65px;
13+
left: 5px;}
14+
</style>
15+
</head>
16+
<body>
17+
<div id="bobby">bobby is the ebst</div>
18+
<div id="hobart">hobart is the coolest</div>
19+
</body>
20+
</html>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<style type="text/css">
6+
p > a {color:red;
7+
font-size:30px;}
8+
</style>
9+
</head>
10+
<body>
11+
<a href="http://thenewboston.com">first</a>
12+
<p><a href="http://thenewboston.com">second</a></p>
13+
<h3><a href="http//thenewboston.com">third</a></h3>
14+
</body>
15+
</html>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<style type="text/css">
6+
p:first-letter {font-weight:bold;
7+
font-size:30px;
8+
color:green;}
9+
</style>
10+
</head>
11+
<body>
12+
<p>paul did u hear miley cyrus player vbeer pong with the ursusians</p>
13+
<p>omgwtfbbq</p>
14+
<p>oh, billy!</p>
15+
</body>
16+
</html>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
h1 {color:blue;}
2+
3+
p{font-family:Tahoma;
4+
color:red;
5+
font-size:20px;}
6+
7+
a{color:orange};
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<link rel="stylesheet" type="text/css" href="donkey.css"/>
6+
</head>
7+
<body>
8+
<h1>this is the index page!</h1>
9+
<p>my naeis parry the aprrot i am a prahgraj</p>
10+
<a href="second.html">cick me i dare ya to</a>
11+
</body>
12+
</html>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<link rel="stylesheet" type="text/css" href="donkey.css"/>
6+
</head>
7+
<body>
8+
<h1>second!</h1>
9+
<p>my naeis parry the aprrot i am a prahgraj</p>
10+
<a href="index.html">cick me i dare ya to</a>
11+
</body>
12+
</html>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
h1 {color:blue;}
2+
3+
p{font-family:Tahoma;
4+
color:red;
5+
font-size:20px;}
6+
7+
a{color:orange};
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<link rel="stylesheet" type="text/css" href="donkey.css"/>
6+
7+
<style type="text/css">
8+
h1 {color:green;}
9+
</style>
10+
</head>
11+
<body>
12+
<h1>this is the index page!</h1>
13+
<p>my naeis parry the aprrot i am a prahgraj</p>
14+
<a href="second.html">cick me i dare ya to</a>
15+
</body>
16+
</html>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<link rel="stylesheet" type="text/css" href="donkey.css"/>
6+
</head>
7+
<body>
8+
<h1>second!</h1>
9+
<p>my naeis parry the aprrot i am a prahgraj</p>
10+
<a href="index.html">cick me i dare ya to</a>
11+
</body>
12+
</html>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
3+
<html>
4+
<head>
5+
<style type="text/css">
6+
#apples {border:2px solid red;
7+
position:absolute;
8+
width: 150px;
9+
height: 175px;
10+
top: 40px;
11+
left: 115px;}
12+
13+
#blueberry {border:2px solid blue;
14+
position:absolute;
15+
width: 150px;
16+
height: 175px;
17+
top: 30px;
18+
left: 15px;}
19+
</style>
20+
</head>
21+
<body>
22+
<div id="apples">i amt he apple box</div>
23+
<div id="blueberry">yo soy un blueberryy</div>
24+
</body>
25+
</html>

0 commit comments

Comments
 (0)