answersLogoWhite

0

How do you remove the lines formed by frames in HTML page?

Updated: 8/17/2019
User Avatar

Wiki User

14y ago

Best Answer

Use the attribute Frameborder=0 or Frameborder=No. It can be used in the Frame, Frameset or Iframe tag. 1 or Yes will set it on.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you remove the lines formed by frames in HTML page?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you use hyperlinks in frames in a HTML document?

You can use hyperlinks in frames too in an HTML document. You can place the anchor tag out side of a frame.


Which tag is used to define frames in HTML?

<frame>


What completely breaks an HTML 4.01 Frameset page by NOT showing the frames?

You need to have a link that specifies one page to be in your window, and have its target set as _top to break out of frames. So if you wanted a page called MainPage.htm to be in your window and remove frames, you would have a link such as this: <a href="MainPage.htm" target="_top">Click here to break out of frames</a>


What tags are used to embed one HTML page inside another HTML page without using frames?

<object type="text/html" data="http://www.example.com" style="width:80%; height:300px; margin:1%;"> embedded html without frames</object>


Need of frame in HTML?

Frames are used to divide the HTML page into sections. The <frame> tag is used for that purpose.


What are examples of HTML FRAMES?

Frames are used by developers to divide the page into various sections. It can have id, name etc for referencing it further.


Create frame in HTML?

Go To http://www.htmlcodetutorial.com and look for the FRAMES TUTORIAL. It will help you.


Which HTML document type definiton is designed for webpages that use frames?

In HTML 4.01 and XHTML 1.0, the framest document type definition (DTD) was available to create pages using frames.In HTML 5, frames have been deprecated, because the W3C determined that they created a detriment to accessibility and usability.


Why hypertext is combine with HTML?

Hypertext is combined with HTML as it is formed by it. HTML could easily create a Hypertext.


How do you make a frame in HTML?

Making frames is relatively simple. Start with the basic HTML below. ---- Frameset Example Your browser does not support frames. ---- Now edit a few things. * rows should be changed to cols if you want frames in collumns. If you want frames in rows, leave it as it is. If you want a mixed set of frames ranging from collumns and rows, you'll have to include more framesets where you want the different kind of frame arrangement. See the related links for an example. * size1,size2,size3should be changed to units signifying how large you want the frames to be, respectively. size1 is respective to the first frame you specify, size2 is respective to the second frame you specify and so on. You may use a pixel number, a percentage number, or an asterisk (meaning "the rest" or "whatever is left") as units. An example would be 100,50%,* * frame1.html, frame2.html, and frame3.html need to be changed to the file you want to be displayed in the frame. You may include anything that can be viewed in a browser, such as an HTML document or even a picture. * Your browser does not support framesshould be replaced with the text you want a client to see if their browser does not support frames. You can leave it as it is, if you'd like. See the related links for a few examples.


What is use of frame in HTML?

A frame can be used for dividing page into segments. <frame> attribute can be used to define frames.


Is there any reason to learn HTML before xhtml?

No, because they are essentially the same thing. HTML came before XHTML, and can be ill-formed but still acceptable. XHTML is just well formed HTML with the inclusion of a DTD at the very top.