इस लेख में हम How do I insert a row in a table? के बारे में बात करेंगे। इसके साथ साथ हम आपको how to create a table row in html, how to define a table in html, how to make row table in html जैसे सवालों का भी जवाब दे रहे होंगे।
How do I insert a row in a table?
इसके लिए आपको निचे दिए गए कोड को फॉलो करना होगा इसके जरिये आप आसानी से कोई भी row define कर सकते है HTML में, यह बहुत ही आसान और सरल method है।
<table border="1"> <tr> <th>Column 1</th> <th>Column 2</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> </tr> <!-- New row inserted here --> <tr> <td>New Data 1</td> <td>New Data 2</td> </tr> </table>
Column 1 | Column 2 |
---|---|
Data 1 | Data 2 |
New Data 1 | New Data 2 |
How to create a table row in html
हम आशा करते है की आपको आपके सवाल How do I insert a row in a table? का जवाब मिल गया होगा।
इसे भी पढ़े🚀