File tree Expand file tree Collapse file tree
Tut-12_Table Headers and Movie Stars!
Tut-13_Colspan and Annoying People
Tut-14_Table width, cellpadding, and cellspacing
Tut-17_RGB Color and Line Spacing
Tut-18_font-weight and font-style Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments