For more information visit https://dequeuniversity.com/tips/provide-iframe-titles
<!-- For iframes that have meaningful content, provide a title using the title attribute. -->
<iframe title="Campus Tour" src="campustourvideo.html"></iframe>
<!-- For iframes that contain non-readable content, like JavaScript, provide a title to pass automated tests, but be sure to hide the content altogether from screen reader users using aria-hidden="true". -->
<iframe title="Intentionally blank" src="noreadablecontent.com" aria-hidden="true"></iframe>