InterviewSolution
Saved Bookmarks
| 1. |
Fill in the blanks in the HTML code to create a framed web page in the following format: |
|
Answer» The required coding is : <HTML> <FRAMESET ROWS = "20%,*"> <FRAME SRC = "FILEA.HTML"> <FRAMESET COLS = "40%,*"> <FRAME SRC = "FILEB.HTML"> <FRAME SRC = "FILEC.HTML"> </FRAMESET> </FRAMESET> </HTML> |
|