0
how can i resize pic at html and how can i insert table ???
2 Antworten
0
Resize the picture by changing the height and width attributes inside the html tag. To insert a table use the <table> tag then the <tr> for table rows and <td> table data which are the items on the rows. e.g.
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
</table>
0
thanks alot dear