• Home
  • Save code
  • Refresh
  • theme1 theme2 dark3
  • Embed
  • DMCA

Add image inside table cell in HTML

<html>
 <body>
   <table border="4px">
    <tr>
        <th>Name</th>
        <th>Location</th>
        <th>Photo</th>
    </tr>
    <tr>
        <td>Apu Gorai</td>
        <td>India</td>
        <td><img height="100" src="https://app.3schools.in/logo.png" width="100"></td>
    </tr>
</table>
 </body>
</html>
 
 

You may like these posts :

    Write Your Comment