Posts

Showing posts from January, 2025

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>

CONTAINT MANAGMENT

 CONTAINT MANAGMENT:- 1.In conraint management concept open multiple page in single window. 2. in this concept we have to use <IFRAME>. 3. There are following attribute used in <IFRAME>. 1.Height 2.width 3.name WHAT IS TARGET ATTRIBUTE:- (In this attribute is used to locate the link) <HTML> <BODY> <a href="first.html" target="F1"> first</a> &nbsp; &nbsp; &nbsp; &nbsp; <a href="form.html" target="F1"> form </a> &nbsp; &nbsp; &nbsp; &nbsp; <a href="table.html" target="F1"> table </a> <br> <iframe height="600" width="600" name="F1">   </BODY> </HTML> ASSIGMENT 3 tassk=1 1.create a table in following format   sno college website department    1 raisoni raisoni.com 1 MBA 2 MCA 3 BBA    2 KDK Kdk.com 1.BSE 2.CSE 3.IT 1. LOGIC ( us...

HTML TABLE

 HTML TABLE:- 1.Table is representing data and information in row and column format. 2.there are following parts used in table.   roll name city- (heading)- <TH> </TH>   101 Ramesh Nagpur   102 umesh pune   103 Mahesh nashik- (data)- <TD> </TD> ROW= <TR> </TR>  3.Table used to be created inside the <table>. <HTML> <BODY> <TABLE border="1"> <TR>  <TH> ROLL </TH> <TH> NAME </TH> <TH> CITY </TH> </TR>  <TR> <TD> 101 </TD> <TD> RAMESH </TD> <TD> NAGPUR </TD> </TR> <TR> <TD> 102 </TD> <TD> UMESH </TD> <TD> PUNE </TD> </TR> <TR> <TD> 103 </TD> <TD> MAHESH </TD> <TD> NASHIK </TD> </TR> </TABLE> </BODY> </HTML>

HTML FORMS

 HTML FORMS:- 1)forms is communication between user to web page 2) all form used to created inside the <form> tag3) there are following control used in form.    1. textbox control    2. password box control   3. redio button control    4. checkbox control   5. text area control    6. drop down list control   7. button control  <HTML> <BODY> <FORM>  ENTER YOUR NAME  <BR> <input type="text"> <BR>  enter your password <BR> <input type="Password"> <BR> select your gender <BR> Male-<input type="radio"> ( single selection)  <BR> select your course  <BR> MBA-<input type="checkbox"> MCA-<input type="checkbox"> <BR> select your city <BR> <select> <option>Nagpur </option> <option> pune </option> <option> Mumbai </option> </select> <BR> write your qu...

HTML NOTES

 HTML Language  1 html is called hyper text mark up language  2 what is hyper- representing next location  text - text is collection of number, symbol, words ex.- amit@001  3 mark up - mark up is libarary is used to operate html program  4 language- mediater    HTML istructured  is called tag  tag is representing- <>  ex B tag- this is wrong concept          -<B>  ex. U tag = <U> ex. I tag = <I>     P tag = <P> types of tag in HTML:- there are two types of tag used in HTML  1- open tag  2- close tag  1- open tag= in this tag only used 1 time in program ex.<B>, <U>, <I>,  2- close tag= in this type of tag is used two time in program and tag is to be closed / symbol  ex. quw. B is close tag       ans.<B>    </B> U is close tag  <U>    </U> I is open tag = ...