InterviewSolution
Saved Bookmarks
| 1. |
Write the HTML code to do the following: a. To display a horizontal line of green colour.b. To create a hyperlink on the word CLICK to an image named testimage.jpeg |
|
Answer» (a) <hr color=”green”> (b) < a href=”testimage.jpeg”> CLICK |
|