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