Frames In HTML

Different Types of Frame In html

    Horizontal Frame The horizontal frames are created in the horizontal pattern on the browser. Horizontal frames divides the browser in the horizontal parts as you see in the figures. And all the frames displaying a different html files in them.     Vertical Frame The vertical frames are created in the vertical pattern …

Different Types of Frame In html Read More »

Frame Tags

Tags Description <frameset> Defines a set of frames <frame> Defines a sub window (a frame) <iframe> Defines an inline sub window (frame)     Tags and its Attributes:   Tags Attribute Value Description <frameset> rows pixels, % part of page Defines the proportion of division of page in horizontal frame. cols pixels, % part of …

Frame Tags Read More »

Examples of Different Frames

Just write/copy this example on any text editor new file and save the file and open in the browser and see how it looks.   Example: This example will display empty frames.   <html> <frameset rows=”20%,50%,30%”> <frame> <frame> <frame> </frameset> <head> <title> Frames</title> </head> </html>     so now lets do some Practical. Just write/copy …

Examples of Different Frames Read More »