Computer Science, asked by vanshikamaratha, 5 hours ago

table tag को उदाहरण सहित स्पष्ट कीजिए।​

Answers

Answered by punjabigirl03112
4

Explanation:

इससे स्पष्ट है कि सारणी बनाने का प्रारंभ <Table> Tag से किया जाता है और समापन </table> Tag से किया जाता है। इन दोनो के बीच मे Table के Data को परिभाषित किया जाता है। ... Table Tag मे कई एट्रीव्यूट हो सकते है, जैसे- width, border, cellpadding, cellspacing, bgcolor आदि।

Answered by vishakasaxenasl
0

Answer:

table tag is used in HTML to create a table.

Explanation:

एक table पंक्तियों और स्तंभों का संग्रह है जिसमें हम अपना डेटा दर्ज कर सकते हैं।

HTML में, हम table टैग के साथ एक टेबल बनाते हैं। तालिका टैग के अंदर, हमारे पास क्रमशः table की rowऔर table के डेटा आइटम बनाने के लिए <tr> और <td> टैग हैं।

Example:

<table>

<tr>

<td> NAME</td>

<td> ROLL NO</td>

<td> SUBJECT</td>

</tr>

<tr>

<td> Ayushi</td>

<td> 1</td>

<td> Maths</td>

</tr>

<tr>

<td> Vishaka</td>

<td> 2</td>

<td> Computer Science</td>

</tr>

</table>

बॉर्डर वाली टेबल बनाने के लिए, आप टेबल के border attribute का इस्तेमाल कर सकते हैं। डिफ़ॉल्ट रूप से, यह black border के साथ एक table बनाता है।

#SPJ3

Similar questions