HTML frames
HTML frames allow us to present document in multiple views.Using the multiple view we can keep certain information visible and at the same time other views are scrolled or replaced.
<frameset cols="150,*">
This allow us to divide the two columns.(i.e vertical frames).One are occupying the size of 150 pixels and the other occupies the remaining portion of the window.
<frameset rows='20%,30%,50%, cols='30%*'>
Example
HTML frames allow us to present document in multiple views.Using the multiple view we can keep certain information visible and at the same time other views are scrolled or replaced.
<frameset cols="150,*">
This allow us to divide the two columns.(i.e vertical frames).One are occupying the size of 150 pixels and the other occupies the remaining portion of the window.
<frameset rows='20%,30%,50%, cols='30%*'>
Example
<html> <head> <title> HTML Frame </title> </head> <frameset cols="50%,50%"> <frame src="htmlalign.html" name="leftvertical"> <frameset rows="*,170%"> <frame src="htmlfont.html" name="right"> <frame src="htmlformatting.html" name="right_bottom"> </frameset> </frameset> </html> |
Output
0 comments:
Post a Comment