Show the properties of frame tag, Computer Engineering

Assignment Help:

Q. Show the properties of Frame Tag?

This tag is used for placing an HTML file in the frame created. We should now tell browser what to put in every frame.

<HTML>

<HEAD>

<TITLE>My Frame Page- The Master Page</TITLE>

</HEAD>

<FRAMESET COLS="50%, 50 %">

<FRAME SRC="One.htm">

<FRAME SRC="Two.htm">

</FRAMESET>

</HTML>

You also need to note here that <FRAMESET>is a container tag and <FRAME> isn't. A container tag has an opening <TAG>and a closing </TAG>. So notice that <FRAME> tag has no delimiter to terminate it. Everything is in its attributes. <FRAMESET>tag does all dividing of page in different windows. It also has attributes which specify how to divide them up. Can we divide page into more than 2 pieces? Yes, just make sure that you specify a page to occupy every section or browser will get confused.

<HTML>

<HEAD>

<TITLE>My Frame Page- The Master Page</TITLE>

</HEAD>

<FRAMESET COLS="20%,20%,20%,20%,20%">

<FRAME SRC="One.htm">

<FRAME SRC="Two.htm">

<FRAME SRC="Three.htm">

<FRAME SRC="Four.htm">

<FRAME SRC="Five.htm">

</FRAMESET>

</HTML>

1957_Show the properties of Frame Tag.png

Fig: A Web Page with Five Frames

It is just a small step to making frames all of different sizes. Your arithmetic should be correct and that percentages you specify add up to 100 or browser will come up with its own interpretation.

If we divide the page into ROWS instead of COLS we get a different layout.

<HTML>

<HEAD>

<TITLE>My Frame Page- The Master Page</TITLE>

</HEAD>

<FRAMESET ROWS="10%, 20%, 30%, 15%, 25 %">

<FRAME SRC="One.htm">

<FRAME SRC="Two.htm">

<FRAME SRC="Three.htm">

<FRAME SRC="Four.htm">

<FRAME SRC="Five.htm">

</FRAMESET>

</HTML>

Let's now take another instance with only 2 frames. We can specify 50 to indicate that number of pixels in place of 50%. We can also use * in place of a number. * means whatever is left over.

<HTML>

<HEAD>

<TITLE>My Frame Page- The Master Page</TITLE>

</HEAD>

<FRAMESET COLS="50,*">

<FRAME SRC="One.htm">

<FRAME SRC="Two.htm">

</FRAMESET>

</HTML>

When you use frames you have to be very careful to code properly to make sure that all viewers are able to look at reasonably consistent views. Let's suppose that you make a frame 100 pixels wide on the left and 100 pixels wide on the right. If some users are running an 800 ×600 screen they see middle area as 600 pixels wide. Other users might have a screen set at 640 ×480. What do they see? Middle area for them is only 440 pixels wide. So if you employ any absolute dimensions in your <FRAMESET>tags you must have at least one * that will produce an elastic frame. That way everything would look at least reasonably good. If you don't do that, your page may need to scroll on one resolution and not on another. As far as possible you might want to avoid absolute values in your frames and work on relative numbers so that things get taken care of automatically by browser. We can have more than one leftover frame and specify a size relationship between them. Try it yourself & see the result.

<HTML>

<HEAD>

<TITLE>My Frame Page- The Master Page</TITLE>

</HEAD>

<FRAMESET COLS="50,*,2*">

<FRAME SRC="One.htm">

<FRAME SRC="Two.htm">

<FRAME SRC="Three.htm">

</FRAMESET>

</HTML>

Above code means: Make 3 frames. Make first 50 pixels wide. Divide rest between frames 2 and 3. Though make frame 3 twice as big as frame 2. Put One.html/ in first frame, Two.html/ in the second and Three.html/ in the third. It is significant to note that everything is done in order. The first <FRAME>is displayed according to the first size attribute in the <FRAMESET>tag (50/One), the second frame with the second (*/Two) and the third frame with the third attribute set (2*/Three).


Related Discussions:- Show the properties of frame tag

Explain the ccitt hierarchical structure of routing, Explain the CCITT hier...

Explain the CCITT hierarchical structure of routing using block schematic. In right-through routing the originating exchange finds the whole route from source to destination. N

What do you mean by data warehousing, What do you mean by data warehousing?...

What do you mean by data warehousing? Data warehouse implies as: a) It is subject oriented b) It is integrated and c) It is time variant d) It is non-volatile colle

Which work process triggers database changes, Which work process triggers d...

Which work process triggers database changes? Update work process

Name some multimedia applications, Illustrate what are the Multimedia appli...

Illustrate what are the Multimedia applications Multimedia comprise the use of a computer to present: - Text - Video - Graphics - Sound - Animation In an inte

Name the variable types of c, C provides a wide range of variable types. ...

C provides a wide range of variable types. Normal 0 false false false EN-IN X-NONE X-NONE MicrosoftInternetExplorer4

Binary floating-point number range, Q. Binary floating-point number range? ...

Q. Binary floating-point number range? Smallest Negative number   Maximum mantissa and maximum exponent     =    - (1 -2 -24 ) × 2 127   Largest negative number

Explain LRU page replacement algorithm, Explain LRU Page replacement algori...

Explain LRU Page replacement algorithm. LRU policy: It expands to least recently use. This policy proposes that we remove a page that last usage is farthest from present time

Bus master - computer architecture, Bus Master: In  computer system,  ...

Bus Master: In  computer system,  bus  mastering  is  a attribute  supported  by  various  bus  architectures  that  enables  a  device linked to the bus to initiate transacti

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd