+ 1
How to make table in html
11 Respostas
+ 4
https://code.sololearn.com/WKy8Cq7tWvKT/?ref=app
+ 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>
+ 1
Just very simple
Use the table tags
<table>
</table>
0
https://code.sololearn.com/W2PKfpvQLhjM/?ref=app
0
Use the table tag : <table> ur input </table> don't forget to close it as it is a container taf
0
ok cool
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>
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
- 1
It,s very easyđ
<table>
<tr>
<td>etc</td>
<td>etc</td>
</tr>
</table>