model-novalid.html (568B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><map></title> 6 </head> 7 <body> 8 <!-- is block, contains blocks and <area> --> 9 <map name="foo" class="class" id="id" lang="en"> 10 <h2>header</h2> 11 <area alt="text" coords="1,2,3,4"> 12 <p>text</p> 13 <area alt="text" coords="5,2,3,4"> 14 <p>text2</p> 15 </map> 16 17 <!-- can contain interactive --> 18 <map> 19 <p><a>text</a></p> 20 <area alt="text" coords="5,2,3,4"> 21 </map> 22 23 <!-- map with flow content and phrasing parent --> 24 <span><map name=foo><p>foo</p></map></span> 25 26 </body> 27 </html>