0
I'm stuck on how to develop a table using HTML.Please any suggestions
4 Answers
+ 5
Please check this lesson out :)
https://www.sololearn.com/learn/HTML/1033/
+ 3
<table>
<tr> <th> Monday </th>
<th> Tuesday </th>
<th> Wednesday </th>
</tr>
<tr>
<td> School </td>
<td> Go to park </td>
<td> No school </td>
</tr>
</table>
The <tr> makes a new table row.
The <th> is your title, you could just do ir with td if you want, then make the text bold;
The <td> Makes the table to the right;
Copy this text and paste it as a code. On the css, add border on the table, and th, td;
CSS
table, th, td{
border: 1px solid black;
}
+ 2
Tnx