table tr th td

Solutions on MaxInterview for table tr th td by the best coders in the world

showing results for - "table tr th td"
Romina
01 Jan 2018
1<table>
2    <tr>
3        <th>Nom</th>
4        <th>Prenom</th>
5        <th>Sexe</th>
6        <th>Age</th>
7    </tr>
8    <tr>
9        <td>Jean</td>
10        <td>Charles</td>
11        <td>Masculin</td>
12        <td>25 ans</td>
13    </tr>
14    <tr>
15        <td>Jackson</td>
16        <td>Louis</td>
17        <td>Masculin</td>
18        <td>24 ans</td>
19    </tr>
20    <tr>
21        <td>Pierre</td>
22        <td>Wesly</td>
23        <td>Masculin</td>
24        <td>25 ans</td>
25    </tr>
26    <tr>
27        <td>Junia</td>
28        <td>Pierre</td>
29        <td>feminin</td>
30        <td>25 ans</td>
31    </tr>
32</table>
33