I'm having a trouble with creating table in HTML5...can anyone describe it clearly? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I'm having a trouble with creating table in HTML5...can anyone describe it clearly?

Html

28th Oct 2020, 6:26 AM
Rameswar Paul
Rameswar Paul - avatar
4 Answers
+ 4
Do what Abhay suggests and don't forget to put it all in the <table> </table> tags.
28th Oct 2020, 7:10 AM
Maxwell Anderson
Maxwell Anderson - avatar
+ 2
<tr> tag is used to create a row in table , <td> tag is used to create a cell in a row so you can create something like this using the above tag <tr> <td>Name</td> <td>Age</td> <td>Education</td> <tr> Which will output as Name Age education in place of <td> tag you can use <th> to write heading name for the respective column, Hopefully this gives you an idea ,or just go through articles available online and try to understand and implement it ,you will get used to making tables easily
28th Oct 2020, 6:49 AM
Abhay
Abhay - avatar
+ 2
I have some very old examples I made when I was learning about tables. I'm not sure if this will help you any. But check it out. Change stuff around to see what does what. https://code.sololearn.com/WOsrGLFWQSX1/?ref=app
28th Oct 2020, 7:29 AM
Chris Coder
Chris Coder - avatar
0
Thanks to all😊😊
28th Oct 2020, 9:26 AM
Rameswar Paul
Rameswar Paul - avatar