How can i insert a row in a HTML?

3 replies
Hello friends, do you know that how can i insert a row in a HTML? If anyone know about it then please reply me soon.
#html #insert #row
  • Profile picture of the author PRBandit
    Do you mean a row in a HTML table?

    You would just do add <tr><td></td></tr>
    TR just means table row. Then you add how ever TDs in between that you need
    {{ DiscussionBoard.errors[4392216].message }}
  • Profile picture of the author rohit83
    hi.
    it used tag <tr><td></td></tr>
    if any problm then contact to me
    thnks
    {{ DiscussionBoard.errors[4397825].message }}
  • Profile picture of the author toskana
    The structure of a table is like the following:

    <table>
    <tr>
    <td>
    <p>Your content goes here ... can be even wrapped with a paragraph</p>
    </td>
    </tr>
    </table>

    The <table> tag creates the table and you need to close this tag with </table> at the end of the table.

    <tr> creates a new table row
    </tr> closes this table row

    <td> within the table rows you need some table data
    </td> closes the table data
    {{ DiscussionBoard.errors[4397860].message }}

Trending Topics