InterviewSolution
Saved Bookmarks
| 1. |
Write the HTML code to display an image on the right side of the page. |
|
Answer» <html> <body> <img src="image.jpg" align="right"> </body> </html> |
|