|
| |||||||||
| Tags: attributes, attributes, browser, browser, frames, frameset tag, frameset tag, html, html, pixels, pixels, resolution |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| How to use Frameset Tag in HTML?
I have done with the basic things in HTML. Now I am stuck while using the Frameset Tag in HTML. I am using the frames, so that I can display more than one HTML document in the same browser window. I am little succeeding while using the Frame tag. But I think that I require more information about the Frame tag. Can anyone explain me how to use Frameset Tag in HTML? Please help me sooner.! ![]()
__________________ 3.2 (northwood) 2gig ramATI AIW X800xt 256mb Gigabyte GA-8knxp 875p Chipset Optiwrite 8X DVD Burner Win XP PRO Sp2 (Works Perfectly) 2 SATA Raptor 74gig Raid 0 2 7200 IDE 320gig HD |
|
#2
| ||||
| ||||
| Re: How to use Frameset Tag in HTML?
The main feature of the frame tag is to display more than one HTML document in the same browser window. You can call the HTML document is called a frame, and each frame is independent of the others. Also there are some disadvantages of using the frames. They are :
|
|
#3
| ||||
| ||||
| Re: How to use Frameset Tag in HTML?
The Frameset Tag is used in HTML for the following reasons :
Hope that you know what exactly does the Frameset Tag do in HTML. |
|
#4
| |||
| |||
| Re: How to use Frameset Tag in HTML?
You can check the following example, for understanding the use of frameset tag. In the example that I have mentioned below, have a frameset with two columns. The first column is set to 30% of the width of the browser window. And the second column is set to 70% of the width of the browser window. The HTML document "trialframe_1.htm" is put into the first column, and the HTML document "trialframe_2.htm" is put into the second column : HTML Code: <frameset cols="30%,70%"> <frame src="trialframe_1.htm"> <frame src="trialframe_2.htm"> </frameset> |
|
#5
| ||||
| ||||
| Re: How to use Frameset Tag in HTML?
You can also set the value of Column size in pixels (cols="150,550"), and one of the columns can be set to use the remaining space (cols="25%,*"). A simple example is dividing the screen in two columns, the first with 300 pixels of width and the second with all the remaining space. HTML Code: Code begin <frameset cols="300,*"> <frame name="first" noresize="noresize" src="trial1.html"> <frame name="second" noresize="noresize" src="trial2.html"> </frameset>
__________________ Signatures reduce available bandwidth |
|
#6
| |||
| |||
| Re: How to use Frameset Tag in HTML?
If you want to divide the screen in frames, then there are unlimited possibilities to do that. Frames are subdivided by replacing a single frame by a frameset. Below is an example of the same : HTML Code: <frameset rows="150,*"> <frame name="source" noresize="noresize" src="source.html"> <frameset cols="200,*> <frame name="direction" noresize="noresize" src="direction.html"> <frame name="matter" noresize="noresize" src="matter.html"> </frame> </frameset> |
|
#7
| ||||
| ||||
| Re: How to use Frameset Tag in HTML?
I am trying to explain you in easy way. So I am giving you simple example of the frameset. HTML Code: <frameset cols="250,*" border="7" bordercolor="Aqua">
__________________ IF you hate me, please don't mention it. I know who hates me and who doesn't. You really do not have to make fun of people.... |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to use Frameset Tag in HTML?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| html help | saffu khan | Software Development | 3 | 03-05-2010 02:01 PM |
| How to define HTML Validator and services provided by HTML Validator | Aldous | Software Development | 3 | 22-09-2009 02:12 PM |
| How can i use Frameset in asp.net | Atilla | Software Development | 2 | 17-04-2009 12:08 PM |
| HTML and CSS to PDF | Miltongomes | Software Development | 3 | 18-03-2009 11:25 PM |
| How do I get the HTML code to display as HTML code? | NAYASA | Software Development | 3 | 26-12-2008 01:35 PM |