Skip to content

Commit 98b18c5

Browse files
committed
Added XHTML and CSS source code files for tutorials 11 to 18
1 parent ac56464 commit 98b18c5

File tree

8 files changed

+164
-0
lines changed

8 files changed

+164
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
</head>
5+
<body>
6+
7+
<table border="1">
8+
<tr>
9+
<td>FISH</td>
10+
<td>apples</td>
11+
<td>tuna</td>
12+
</tr>
13+
<tr>
14+
<td>tuba</td>
15+
<td>ham chops</td>
16+
<td>corn?</td>
17+
</tr>
18+
</table>
19+
20+
</body>
21+
</html>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
</head>
5+
<body>
6+
7+
<table border="1">
8+
<tr>
9+
<th>Name</th>
10+
<th>Movie</th>
11+
<th>Who they love</th>
12+
</tr>
13+
<tr>
14+
<td>Natalie Portman</td>
15+
<td>Garden State</td>
16+
<td>Bucky</td>
17+
</tr>
18+
<tr>
19+
<td>Rachael McAdams</td>
20+
<td>Mean Girls</td>
21+
<td>Bucky</td>
22+
</tr>
23+
</table>
24+
25+
</body>
26+
</html>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
</head>
5+
<body>
6+
7+
<table border="1">
8+
<tr>
9+
<th colspan="2"><h3>Odd People</h3></th>
10+
</tr>
11+
<tr>
12+
<th>Type</th>
13+
<th>Reason</th>
14+
</tr>
15+
<tr>
16+
<td>Cat People</td>
17+
<td>17 cats is just too many</td>
18+
</tr>
19+
<tr>
20+
<td>Loud People</td>
21+
<td>Sure turn that muusic up, its only 3 am</td>
22+
</tr>
23+
</table>
24+
25+
</body>
26+
</html>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
</head>
5+
<body>
6+
7+
<table border="1" cellspacing="10"> <!-- Other options include: cellpadding, and width -->
8+
<tr>
9+
<th>Type</th>
10+
<th>Reason</th>
11+
</tr>
12+
<tr>
13+
<td>Cat People</td>
14+
<td>17 cats is just too many</td>
15+
</tr>
16+
<tr>
17+
<td>Loud People</td>
18+
<td>Sure turn that muusic up, its only 3 am</td>
19+
</tr>
20+
</table>
21+
22+
</body>
23+
</html>

XHTML and CSS/Tut-15_Lists/index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
</head>
5+
<body>
6+
7+
<ul>
8+
<li>New sunglasses</li>
9+
<li>computer</li>
10+
<li>paintgs for my walls</li>
11+
<li>hot pockter</li>
12+
</ul>
13+
14+
<ol>
15+
<li>go to youtube</li>
16+
<li>type in "thenewboston"</li>
17+
<li>watch all the videos</li>
18+
<li>eat a hot pocket</li>
19+
</ol>
20+
21+
</body>
22+
</html>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<style type="text/css">
5+
p {
6+
color:blue;
7+
font-family:arial;
8+
}
9+
</style>
10+
</head>
11+
<body>
12+
this is normal text
13+
<p>this is paragrpah text</p>
14+
</body>
15+
</html>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<style type="text/css">
5+
h1 {color:#330000;}
6+
p {line-height:150%;}
7+
</style>
8+
</head>
9+
<body>
10+
<h1>Buckys Bacon Wagon</h1>
11+
<p>Bets abcon on this side of the mississippi! Bets abcon on this side of the mississippi! Bets abcon on this side of the mississippi! Bets abcon on this side of the mississippi! </p>
12+
13+
</body>
14+
</html>
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<style type="text/css">
5+
ul {font-weight:bold;}
6+
ol {font-style:italic;}
7+
</style>
8+
</head>
9+
<body>
10+
<ul>
11+
<li>unordered list</li>
12+
</ul>
13+
<ol>
14+
<li>ordered list</li>
15+
</ol>
16+
</body>
17+
</html>

0 commit comments

Comments
 (0)