I'm stuck on how to develop a table using HTML.Please any suggestions | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I'm stuck on how to develop a table using HTML.Please any suggestions

19th Dec 2019, 7:57 PM
Charles Addison
Charles Addison - avatar
4 Answers
+ 5
Please check this lesson out :) https://www.sololearn.com/learn/HTML/1033/
19th Dec 2019, 8:49 PM
JTLZ
+ 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; }
19th Dec 2019, 8:46 PM
Ginfio
Ginfio - avatar
+ 2
Tnx
19th Dec 2019, 8:50 PM
Charles Addison
Charles Addison - avatar