Posts

Showing posts with the label html table tag

how to create table tag in html

Image
How to create table tag in html This Blog You Will Learn  ஃ What is an HTML Table ஃ HTML Table Elements ஃ Syntax of HTML <table> tag ஃ Explain Program ஃ  Output

html Table Attributes

Image
            Table Attributes Tag html tag                    Table Attributes Table tag :-  1) Border Tag The HTML tag use  border Attribute is used to  specify the border to the table  <table>tag. It set the border tag around the table cells. Attribute Values 1 It set the border tag around the table cell This can be set around the table tag  by specifying values like 0 for no border is the showing around the table cells value 1 is set to display a border  tag around the table cells. Program  <! Doctype html > <html> <body> <table border = 1> <tr> <th>header 1</th> <th>header 2</th> </tr><tr> <td>cell 1</td> <td>cell 2<\td> </tr><tr> <td>cell 3</td> <td>cell 4</td> </tr></table> </body></html> Border output 2) Cell...