InterviewSolution
Saved Bookmarks
| 1. |
Write the HTML code to display an inline image named pencil.jpg located at C:\ in the center of your Web page. |
|
Answer» <html> <body> <center> <img src="C:\pencil.jpg"> </center> </body> </html> |
|