InterviewSolution
Saved Bookmarks
| 1. |
Suppose you want to display a picture named school.jpg located in the ‘Photos’ sub directory of the directory ‘My documents’ of C drive in your web page. 1. Name the tag used for this purpose.2. Write HTML code for the web page. |
|
Answer» 1. <IMG> tag: It is used to display images in webpage. 2. <HEAD><TITLE> </HEAD> <Body> <IMG SRC= 'C;/My documents/Photos/School.jpg'> </Body> <html> |
|