Koppelingen in nieuw tabblad openen
  1. Vind ik leuk
    Niet leuk

    HTML frame tag - W3Schools

    Python - Get Started - W3Schools.com - YouTube

    This video is an Get Started guide to Python.Part of a series of video tutorials t…

    YouTube
  1. Frames in HTML allow you to divide a browser window into multiple sections, each capable of loading a separate HTML document. This is achieved using the <frameset> and <frame> tags.

    Example

    <!DOCTYPE html>
    <html>
    <head>
    <title>Example for Frame</title>
    </head>
    <frameset cols="20%,*">
    <frame src="frame1.html">
    <frame src="frame2.html">
    </frameset>
    </html>
    Gekopieerd.

    In this example, the browser window is divided into two columns: the first column takes up 20% of the width, and the second column takes up the remaining width.

    Important Considerations

    Deprecated in HTML5

    The <frame> and <frameset> tags are deprecated in HTML5. Instead, you should use the <iframe> tag to embed another document within the current HTML document.

    Example with <iframe>

    <!DOCTYPE html>
    <html>
    <head>
    <title>Example for IFrame</title>
    </head>
    <body>
    <iframe src="https://www.example.com" width="100%" height="500px"></iframe>
    </body>
    </html>
    Gekopieerd.

    This example uses an <iframe> to embed an external webpage within the current page.

    Attributes of <frame> Tag

    Feedback
  2. HTML - Frames - Online Tutorials Library

    Each frame is indicated by <frame> tag and it defines which HTML document shall open into the frame. Following is the example to create three horizontal frames.

  3. Mensen vragen ook naar
  4. How to Create Frames in HTML? - GeeksforGeeks

    23 jul. 2025 · Frames in HTML allow you to divide a browser window into multiple sections, where each section can load a different HTML document. This technique was once popular for creating complex …

  5. HTML Frames Examples - Quackit Tutorials

    Free HTML frames examples - copy/paste code to make your own frames-based website.

  6. Voorbeelden frames - Handleiding HTML

    In het volgende voorbeeld verdeelt het eerste frameset het venster horizontaal in drie frames. Het bovenste frame is 90 pixels hoog, het onderste frame 150 pixels en het middelste frame krijgt de rest …

  7. HTML <frame> Tag - W3docs

    It defines the structure of a frame (zone in the browser window, where we can load another web page), the number of columns and rows, and also how many percent/pixels it will occupy in a frame. But take …

  8. Frame HTML - W3schools

    In the above example, we are using the HTML <frame> tag to create 3 horizontal HTML frames within an HTML web page. Chrome, IE, Firefox, Opera, and Safari. The HTML Tag is not supported in HTML5. It …

  9. HTML Frame Example - Way2tutorial

    HTML Frames Examples Code - Frame Example with Different Layout and Different type Frame Partiiton set the noresize in frame example code.

  10. Frames in HTML documents - World Wide Web Consortium (W3C)

    HTML frames allow authors to present documents in multiple views, which may be independent windows or subwindows. Multiple views offer designers a way to keep certain information visible, …

  11. Basic Frames | beginner's HTML frames tutorial, <frameset> and …

    17 nov. 2025 · Learn HTML frames from scratch. Complete beginner tutorial covering frameset creation, rows and columns, linking between frames, target attribute, and noframes fallback.