Each <iframe> must include a title attribute that describes its embedded content.
<iframe src="video.html" title="Product demo video"></iframe><iframe src="video.html"></iframe>When: An <iframe> lacks a title or it is empty
Warning: <iframe> missing title attribute
Solution: Add a short title to describe the content
Accessibility: Unnamed frames force screen-reader users to navigate into them and guess purpose.
SEO: Frames without titles miss out on descriptive metadata.
Ensure frames are self-describing to assistive technologies.
H64: Using the title attribute of frame and iframe elements.The title attribute defines the user-visible name of a frame; omitting it leaves the frame unnamed.