Frameborder
Frameborder is an HTML attribute historically used with frame-related elements to control whether a visible border surrounds an embedded document. In practice, it appears on elements such as iframe and frame, where the values are typically "0" (no border) or "1" (default bordered). The attribute originated in older HTML specifications to provide a simple way to style embedded content without CSS.
In modern practice, frameborder is deprecated in HTML5 and is not a standard attribute in current specifications.
Compatibility notes: frameborder may still be recognized by some older or backward-compatible browsers, but relying on
See also: iframe, frames, CSS borders, HTML5 deprecations. Examples: <iframe src="example.html" frameborder="0"></iframe> represents the legacy usage;