H64: Using the title attribute of the frame and iframe elements

HTML Snippet Code
Scenario 1: Iframe with title
<iframe src="http://www.deque.com/" width="50%" height="150" title="Deque systems"> <p>Your browser does not support iframes.</p> </iframe>
Scenario 2: frame (frameset) with title
View Example <frameset cols="25%,25%"> <frame src="frame1.html" title="Frame1"> <frame src="frame2.html" title="Frame2"> <noframes> <body> Your browser does not support frames. </body> </noframes> </frameset>