InterviewSolution
Saved Bookmarks
| 1. |
Which one of the following is not the value of the target attribute?(a) _blank(b) _top(c) _self(d) _emptyI have been asked this question during an interview for a job.I would like to ask this question from Headings, Paragraphs, Tags & Linking between Pages in portion Text, Links & Lists of HTML |
|
Answer» RIGHT CHOICE is (d) _empty Explanation: Where to open linked document is specified by target ATTRIBUTE. It can have the values _blank, _top, _parent, _self, framename. _blank opens linked document is a NEW tab or window. The linked document is opened in the parent frame by _parent. Linked document is opened in a named frame by framename. Linked document is opened in the same window by _self. |
|