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

Linux, Explain about unix file system architecture

Explain about unix file system architecture

What is an interface and what is an abstract class, What is an interface an...

What is an interface and what is an abstract class? Please, expand by examples of using both. Explain why.   In a interface class, all methods are abstract without execution w

What do you mean by best fit, What do you mean by best fit?  Best fit a...

What do you mean by best fit?  Best fit allocates the smallest hole that is big enough. The whole list has to be searched, unless it is sorted by size. This method makes the sm

Explain about different types of mice, Q. Explain about different types of ...

Q. Explain about different types of Mice? Mice can be classified on the foundation of numbers of buttons, position sensing technology or type of Interface:  Sensing Technol

Difference between shadow and override in programming, Overriding tell us o...

Overriding tell us only the methods, but shadowing tells us the entire element.

Assessing heuristic searches , Assessing Heuristic Searches: Given a p...

Assessing Heuristic Searches: Given a particular problem you want to build an agent to solve, so there may be more than one way of justifying it as a search problem, more than

Computer Graphics , What do you mean by ‘Bresenham’s him Algorithm?

What do you mean by ‘Bresenham’s him Algorithm?

Define swapping, Define swapping.  A process needs to be in memory to b...

Define swapping.  A process needs to be in memory to be implemented. Though a process can be swapped temporarily out of memory to a backing store and then brought back into mem

Discuss the advantages of expression tree, Discuss its advantages over the ...

Discuss its advantages over the other evaluation techniques. The expression tree is determined by using a post-order traversal of the expression tree as given here: 1. If such

State the basic properties of this analytical engine, State the basic prope...

State the basic properties of this analytical engine The basic properties of this analytical engine are: It was a common purpose programmable machine. It had provisi

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