hello to all,
what is the tag for inline frame?
As , and already identified the inline-frame element and showed basic usage, the following expands on practical points that are often missed: accessibility, security, cross-document comms, responsiveness and performance.
Always provide a descriptive title (for screen readers) and consider referrerpolicy, name and loading attributes for better privacy, targeting and performance. Modern browsers support loading="lazy" to defer offscreen frames; check browser support before relying on it. See the MDN reference for a full attribute list: MDN: iframe element.
Security: untrusted content should be kept tightly sandboxed (use the sandbox attribute and explicit allow tokens). Many sites block embedding via server headers (X-Frame-Options or CSP frame-ancestors), which you cannot override from the client—if a site refuses to be framed you must host/proxy the content or get permission. Clickjacking is a real risk; follow OWASP guidance when embedding third-party pages: OWASP Clickjacking Defense Cheat Sheet.
Cross-origin communication: use postMessage rather than trying to reach into another window directly. Example pattern for parent->iframe and listening for messages:
/* parent -> iframe */
iframeEl.contentWindow.postMessage({type: 'ready'}, 'https://example.com');
/* parent listens */
window.addEventListener('message', e => {
if (e.origin !== 'https://example.com') return;
// handle e.data
}); Responsive layout tip: wrap the frame in a container that preserves aspect ratio (padding-bottom trick) and make the embedded frame absolutely fill it. Also remove borders and avoid fixed pixel widths for mobile. These practices improve accessibility, security and UX compared with a bare, fixed-width frame.
Jump to Post— mattster 195<iframe src="http://www.google.co.uk/" width="500" height="500"></iframe>
Jump to Post— JorgeM 958The HTML inline frame uses the element
<iframe>. What exactly do you need to know about its use?
<iframe> tag specifies an inline frame. used to embed another document.
The HTML inline frame uses the element <iframe>. What exactly do you need to know about its use?
Try the following link http://www.w3schools.com/html/html_iframe.asp it can explain you better.
-Mike
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.