Important Notice:

Course Content
Heading Tag / Paragraph Tag
0/2
Horizontal Rules (HR element)
0/1
Font Element
0/1
Image Element
0/1
HTML Basic (Chapter 3) M2-R5.1
About Lesson

HTML TABLES:-

HTML Document में Table Element द्वारा Table Define की जाती है। Opening <table> Tag द्वारा एक Table को शुरू किया जाता है और Closing </table> Tag द्वारा Table का closed किया जाता है। इस Data में Texts, Images, Videos, Links आदि प्रकार का Data शामिल होता है। हम अपनी जरूरत के अनुसार किसी भी प्रकार के Data को Table में Show करा सकते है। हम <table> element, <tr>, <td>, और <th> elements की मदद से tabular form में डेटा display करने के लिए एक table बना सकते हैं। प्रत्येक table में, table row को <tr> टैग द्वारा defined किया जाता है, table header को <th> द्वारा difined किया जाता है, और table data <td> टैग द्वारा defined किया गया है। HTML tables का उपयोग page के layout को manage करने के लिए किया जाता है जैसे header section, navigation bar, body content, footer section आदि।

<Table> tag:-

इस टैग का उपयोग डेटा को Rows और Column में organized करने के लिए किया जाता है। यह एक Container Element है जो <table> टैग से शुरू होता है और </table> टैग द्वारा closed होता है।

HTML TABLES:-

Table can be defined as any structure, which is having combination of rows and columns, HTML table allows us to arrange data in the form of rows and columns rather than paragraphs or lists. To create table in web page we use ‘table’ element, which is a container element. It starts with <table> tag and ends with </table> tag. Rows of the table are created using <tr> tag and columns are created using <td> tag.

<Table> tag:-

This tag is used to arrange data in rows and columns. It is a container element started with <table> tag and terminated by </table> tag.

error: Content is protected !!