How to make table in html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to make table in html

26th Sep 2020, 7:06 AM
Vishal
Vishal - avatar
11 Answers
26th Sep 2020, 7:11 AM
Pranav Kalro
Pranav Kalro - avatar
+ 4
https://code.sololearn.com/WKy8Cq7tWvKT/?ref=app
8th Jun 2021, 7:45 AM
Tharul Nejana
Tharul Nejana - avatar
+ 2
Actually very easy just use these tags <th> is for table Heading <tr> is for table row <td> is for table data Here is an example <html> <head> <title> Tables in html </title> </head> <body> <table> <tr> <th> Name </th> <th> Std </th> <th> Div </th> </tr> <tr> <td> Alyne </td> <td> 6th </td> <td> G </td> </tr> </body> </html>
28th Mar 2023, 7:13 AM
Kalpana Patil
Kalpana Patil - avatar
+ 1
Just very simple Use the table tags <table> </table>
27th Aug 2021, 7:22 PM
Kelvin Osei Minta
0
https://code.sololearn.com/W2PKfpvQLhjM/?ref=app
1st Jun 2021, 4:33 AM
Rehan
Rehan - avatar
0
Use the table tag : <table> ur input </table> don't forget to close it as it is a container taf
10th Feb 2023, 2:52 PM
Nishtha Ambre
Nishtha Ambre - avatar
0
ok cool
22nd Jul 2023, 4:42 PM
Destin Angelo
Destin Angelo - avatar
0
Just very easy as you will use your table tag: <table> <tr> <th>progress</th> <th>is</th> <th>mine</th> </tr> <tr> <td>coding</td> <td>is</td> <td>easy</td> </tr> </table>
15th Sep 2023, 3:01 AM
Opeyemi Olamilekan
Opeyemi Olamilekan - avatar
0
https://t.me/Coders_Crafters join our Telegram group for discussion, DOUBT'S with everyone about coding. Let's interact with all coders About programming language like HTML CSS, JS, PY
8th Oct 2023, 5:25 AM
Alison Pinto
Alison Pinto - avatar
- 1
It,s very easy๐Ÿ˜… <table> <tr> <td>etc</td> <td>etc</td> </tr> </table>
28th Jun 2021, 12:38 PM
Coder Pro[ Less Active ๐Ÿ“•๐Ÿ“’๐Ÿ“’study] Publishing App
Coder Pro[ Less Active ๐Ÿ“•๐Ÿ“’๐Ÿ“’study] Publishing App - avatar