model-isvalid.html (592B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><img></title> 6 </head> 7 <body> 8 <!-- is structured inline --> 9 <p><a href='foo'><img 10 src="url" 11 alt="text" 12 width="42" 13 height="095" 14 ismap="ismap" 15 class="class" 16 lang="en"></a></p> 17 18 <!-- is strictly inline --> 19 <p><a href='foo'><dfn><img 20 src="url" 21 alt="text" 22 width="42" 23 height="095" 24 ismap="ismap" 25 class="class" 26 lang="en"></dfn></a></p> 27 28 <!-- src and alt are required, others optional --> 29 <p><img src="ur" alt="text"></p> 30 </body> 31 </html>