0
How to create a table in web
3 Answers
+ 10
Sushant Singh
In the beginning of the course only(html)
You'll get to know about table tags..!
~https://www.w3schools.com/html/html_tables.asp
~https://code.sololearn.com/WCY7qlgmHxLr/?ref=app
Hope you understand đ
+ 1
This code which provides an automatic creation for tables will help you:
https://code.sololearn.com/WWM78N4BzcSC/?ref=app
0
If using emmet, you can easily create a simple table with the following snippet.
table>(thead>tr>th*2)+(tbody>tr*2>td*2)
enjoy.