how can i resize pic at html and how can i insert table ??? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how can i resize pic at html and how can i insert table ???

28th Mar 2018, 2:39 PM
MOHAMED HAIDER
MOHAMED HAIDER - avatar
2 Answers
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>
28th Mar 2018, 3:34 PM
TurtleShell
TurtleShell - avatar
0
thanks alot dear
29th Mar 2018, 6:56 PM
MOHAMED HAIDER
MOHAMED HAIDER - avatar