Posts

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...

METHOD OF INTERNAL CSS / tag name method / class method

 METHOD OF INTERNAL CSS:- imp there are two method is used to internal CSS  1. tag name method 2. class method 1. TAG NAME METHOD:- imp   tag name method only used name of the Tag.it can not used tag symbol. < > NOTE:- in tag name menthod can not used similar tag name.  syntax :- tagname {   attribute; } ex.:=   font { color:red;  } ex.:- <html> <head> <style type="text/css"> font  { color:red;  } </style> </head> <body> <font> welcome </font>   <br> <font> NAGPUR </font>  <br> <font> MUMBAI </font>  </body> </html> 2. CLASS METHOD:- imp      1. in class method user can create multiple CSS.    2. all class is to be created using (.) operators SYNTEX:- .classname { attributes: } ex.:-  <html> <head> <style type="text/css"> font  { color:red;  } </style> ...

INTERNAL CSS

 INTERNAL CSS:-imp 1. internal css is used to create inside html page. 2. internal css is to be saved DOT HTML.  structure of internal CSS.:-    <HTML>    <HEAD>    <STYLE TYPE="TEXT/CSS"> LOGICS======{   }     </STYLE>    </HEAD>     <BODY>    </BODY>    </HTML>

DIVISION CONCEPTS :- (IMP)

 DIVISION CONCEPTS :- (IMP) 1.Division is provide a concept for creating Cell in computer screen. 2.division is basically used to create a web page in proper format. 3.division is used <div> </div>. there are following attributes used in <div> </div> 1.background - color  2.height 3.width 4.top 5.left 6.position POSITION ATTRIBUTES:-  position attribute is provide flexibility of <div>. = by default all div is used to fixed position. =if user can required flexible div than using position attributes with the value of "absolute". <div id="box1" style="background-color:yellow; height:100px; width:100px; top:1px; left:1px;"> welcome </div> <div id="box2" style="background-color:red; height:100px; width:100px; top:500px; left:1px; position:absolute;"> Nagpur </div>    <div id="box3" style="background-color:blue; height:100px; width:100px; top:1px; left:1100px; position:ab...

CSS (CASCADING STYLE SHEET)

 CSS (CASCADING STYLE SHEET) 1.css is collection of attribute ( colour, height, width) 2.CSS can not used tag symbol<>  3.CSS only used tag name ( font, B, Center ) TYPES OF CSS:- there are some types of CSS. 1.internal CSS:- Create inside HTML file. 2.external CSS.:- create outside HTML file. 3.Inline CSS.:- this CSS direct used with Tag. DIFFERENT BETWEEN HTML ATTRIBUTE AND CSS ATTRIBUTE:- 1.HTML attribute is represting =   ex. height="100", width="100" 2.CSS attribute is representing :   ex. height:100, width:100 3.in CSS all numerical value is represent PX   ex. height:100PX , width:100PX  CSS REPRESENTETOR:- CSS IS to be represented (style) WHAT IS INLINE CSS:- inline CSS is used inside HTML tags.  HTML> <BODY> <font style="color:red">welcome</font>  <BR> <H1 style="color:red"> welcome </H1> </BODY> </HTML>

REVIEW POINT

 REVIEW POINT:- 1. basic html 2. <mark> 3. <del> 4. <address> 5. <BR> 6. <hr> 7. <center> 8. bold <b> 9. <i> 10. <U> 11. <P> 12.Heading <h1>to <h5> 13.<form> 14.<ol> 14.<ui> 15.ebedding- youtube 16. <table> 17. <iframe> 18. &nbsp  19. image handling - <img> 20. background color  21. background image  22.marquee  TASK=1  create your idea and developed a web page including all topic.

BODY ATTRIBUTES / IMAGE HANDLING IN HTML / BACKGROUND IMAGE /MARQUEE

 BODY ATTRIBUTES :- there are some types of attributes used in a body tag. 1.BG color <BODY BGcolor="red"> IMAGE HANDLING IN HTML :- 1.in the concept we have to used image in html page. 2.image is used <IMG> <IMG SRC="P1.JPG" HEIGHT="200" WIDTH="200" BORDER="5">\ BACKGROUND IMAGE:- <BODY background="P1.jpg"> MARQUEE :- this tag is used to move data on computer screen. marquee height="200" width="500" bgcolor="yellow" direction="up" scrolldelay="1" scrollamount="1"> welcome to my program </marquee>