abbr.Turkey Türkiye
htmltr tag syntax
Function: Define rows in the HTML table.
Description: tr element contains one or more th or td elements.
Note: All browsers support the <tr> tag.
htmltr tag example
<html> <body> <table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>0</td> </tr> </table> </body> </html>
Run Instance?
Click the "Run Instance" button to view the online instance
<html> <meta charset="utf-8"> <body> <table border="1"> <tr> <th>姓名</th> <th>年齡</th> <th>職位</th> </tr> <tr> <td>西門(mén)大官人</td> <td>26</td> <td>PHP高級(jí)講師</td> </tr> <tr> <td>歐陽(yáng)克</td> <td>28</td> <td>PHP高級(jí)講師</td> </tr> </table> </body> </html>
Run instance?
Click the "Run instance" button to view the online instance