0
why the <table> Attributes its not working
i use it in notepad and no lines shown in browsers after reading the answer : i feel im dumb
4 odpowiedzi
+ 1
It's not <tb> with B
It's <td> with D
+ 4
Post your code so we don't have to guess ,I will say you didn't added border or as Bad Coder said values
+ 2
You have to insert values in table after that browser will show you table .
*Try below example*
Example :
<table style="width:100%">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
0
this is it
<html>
<head>
<title> such a good day </title>
</head>
<body>
<p>
<table border="2">
<tr>
<tb> such </tb>
<tb> a </tb>
</tr>
<tr>
<tb> good </tb>
<tb> day </tb>
</tr>
</table>
</p>
</body>
</html>