InterviewSolution
Saved Bookmarks
| 1. |
Every web browser has default colors to display text and hyperlink. How can we change this default colour? |
|
Answer» Attribute of BODY tag is used for this. (1) TEXT Specifies the color of the text content of the page Eg. <BODY TEXT = "Red"> (2) LINK Specifies colour of the hyperlinks that are not visited by the user (3) ALINK Specifies the colour of hyperlinks (4) VLINK Specifies the color of hyperlinks which are a I ready visited by the viewer. Eg. < BODYALINK= “Cyan” LINK-’ Magenta” VLINK= “Orange”> |
|