model-novalid.html (443B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><h3></title> 6 </head> 7 <body> 8 <!-- is not strictly inline --> 9 <p><dfn>text 10 <h3>more text</h3> 11 </dfn></p> 12 13 <!-- is not structured inline --> 14 <p>text 15 <h3>more text</h3> 16 </p> 17 18 <!-- cannot contain blocks --> 19 <h3> 20 <p>p1</p> 21 <p>p2</p> 22 </h3> 23 24 <!-- cannot contain structured inline --> 25 <h3>text 26 <ul><li>text</li></ul> 27 </h3> 28 </body> 29 </html>