This worked for me:-
<!DOCTYPE html> <html> <head> <title>CAR APPLICATION</title> </head> <body> <center> <h1>CAR APPLICATION</h1> </center> <table border="5" bordercolor="red" align="center"> <tr> <th colspan="3">ABCD</th> </tr> <tr> <th>Name</th> <th>Origin</th> <th>Photo</th> </tr> <tr> <td>Bugatti Veyron Super Sport</th> <td>Molsheim, Alsace, France</th> <!-- considering it is on the same folder that .html file --> <td><img src=".\A.jpeg" alt="" border=3 height=100 width=300></img></th> </tr> <tr> <td>SSC Ultimate Aero TT TopSpeed</th> <td>United States</th> <td border=3 height=100 width=100>Photo1</th> </tr> <tr> <td>Koenigsegg CCX</th> <td>Ängelholm, Sweden</th> <td border=4 height=100 width=300>Photo1</th> </tr> <tr> <td>Saleen S7</th> <td>Irvine, California, United States</th> <td border=3 height=100 width=100>Photo1</th> </tr> <tr> <td> McLaren F1</th> <td>Surrey, England</th> <td border=3 height=100 width=100>Photo1</th> </tr> <tr> <td>Ferrari Enzo</th> <td>Maranello, Italy</th> <td border=3 height=100 width=100>Photo1</th> </tr> <tr> <td> Pagani Zonda F Clubsport</th> <td>Modena, Italy</th> <td border=3 height=100 width=100>Photo1</th> </tr> </table> </body> <html>