Posts

Tables in HTML

The table tag defines a table.Inside the table tag ,of opening <table> tag and closing </table> tag we use <tr></tr> tag to define rows in a table ,use the <th></th> tag to define row or column headings, and use the <td></td> tag to define table cells. The table tag can also contain a <caption </caption> tag,which specifies the caption for the table ,you can specify the width of border surrounding the table and default background color of the table. Example:- Marks of Students Roll No. Name Marks Paper I Paper II 101 ABC 75 85 102 XYZ 77 87 Html code to draw the above table is as:- <html> <head><title>Table tags</title></head> <body> <table border="1" cellpadding="10" cellspacing="5" align="center" bordercolor="maroon" bgcolor="silver" > <caption><span style="color: red; font-size: large;...

HTML language

    Welcome to the world of HTML that is full form of: H - Hyper T - Text M - Markup L - Language        HTML is used to make web pages.The meaning of HTML is: Hyper is the opposite of linear.Old -fashioned computer programs were necessarily linear -that is ,they had a specific order.But  with a "hyper" language such as HTML,the user can go anywhere on the web page at any time. Text is just what you're looking at now -English characters used to make up ordinary words. Mark-up is what is done to the text to change its appearance.For instance,"marking up" your text with <b> before it and </b> after it will put that text in bold. Language is just that.HTML is the language that computers read in order to understand web pages. A mark-up language is set of mark-up tags.HTML uses mark-up tags to describe we pages. Note that HTML is not a programming language,it is a mark-up language. Advantages of HTML:-...