C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
HTML <frameset> tag (Not supported in HTML5)HTML <frameset> tag is used to contain the group of frames which can be controlled and styled as a unit. The <frameset> element also specifies the number of rows and columns in the frameset, and how much space they will occupy in a frame. Note: Do not use HTML <frameset> element as it is deprecated and not supported by HTML5, but you can use <iframe> tag instead.Syntax<frameset cols=" ">............</frameset> Following are some specifications about the HTML <frameset> tag
Example 1<!DOCTYPE html> <html> <head> <title>Frame tag</title> </head> <frameset cols="50%,50%"> <frame src="https://www.TheDeveloperBlog.com/html-table"> <frame src="https://www.TheDeveloperBlog.com/css-table"> </frameset> </html> Output: AttributeTag-specific attribute
Supporting Browsers
Next TopicHTML heading Tag
|