class="post-template-default single single-post postid-773 single-format-standard wp-custom-logo wp-embed-responsive right-sidebar nav-float-right separate-containers header-aligned-left dropdown-hover featured-image-active" itemtype="https://schema.org/Blog" itemscope>

How do I insert a row in a table?

इस लेख में हम 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 1Column 2
Data 1Data 2
New Data 1New Data 2

How to create a table row in html

Source: Anuj Bhaiya Youtube
हम आशा करते है की आपको आपके सवाल How do I insert a row in a table? का जवाब मिल गया होगा। 

इसे भी पढ़े🚀

Leave a comment