File tree Expand file tree Collapse file tree 22 files changed +336
-0
lines changed
Tut-34_External Style Sheets
Tut-36_Absolute Positioning
Tut-37_Relative Positioning
Tut-39_Max Width and Height
Tut-40_Introduction to Forms
Tut-41_Check Boxes and Radio Buttons
Tut-44_Passwords and Upload Buttons Expand file tree Collapse file tree 22 files changed +336
-0
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ h1 {color : blue;}
2+
3+ p {font-family : Tahoma;
4+ color : red;
5+ font-size : 20px ;}
6+
7+ a {color : orange};
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ h1 {color : blue;}
2+
3+ p {font-family : Tahoma;
4+ color : red;
5+ font-size : 20px ;}
6+
7+ a {color : orange};
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments