EXTERNAL CSS:-
EXTERNAL CSS:- 1.in this type of CSS is used to create outside the HTML the page 2.external CSS is to saved .css extention 3.external CSS can not used tag symbol .myone { color:red; } .mytwo { color:yellow; } .mythree { color:blue; } NOTE:- 1.CSS FILE CAN NOT EXECUTED 2.CSS FILE ONLY CONNECT TO HTML PAGE. HOW TO CONNECT EXTERNAL CSS TO HTML PAGE:- 1.in this concept using <link> there are following attributes used in <Link>. 1.href 2.rel 3.type 1]]]] EXAMPLE NO.1 CSS FILE :- .myone { color:red; } .mytwo { color:yellow; } .mythree { color:blue; } HTML FILE:- <html> <head> <link href="my.css" rel="stylesheet" type="text/css"> </head> <body> <font class="myone">welcome </font> <br> <font class="mytwo"> NAGPUR </font> <br> <font class="mythree"> MUMBAI </font> </body> </html> 2]]]] EXAMPLE NO.2 CSS FILE:- .my1 { color:r...