- ✕Deze samenvatting is gegenereerd met behulp van AI op basis van meerdere onlinebronnen. Als u de oorspronkelijke brongegevens wilt weergeven, gebruikt u de "Meer informatie"-koppelingen.
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.✕KopiërenIn 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.✕KopiërenThis example uses an <iframe> to embed an external webpage within the current page.
Attributes of <frame> Tag
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.
- Mensen vragen ook naar
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 …
HTML Frames Examples - Quackit Tutorials
Free HTML frames examples - copy/paste code to make your own frames-based website.
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 …
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 …
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 …
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.
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, …
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.
Verkrijg uitgebreide informatie over Frame HTML Example