model-isvalid.html (497B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset=utf-8> 5 <title><code></title> 6 </head> 7 <body> 8 <!-- is structured inline --> 9 <p><code class="class" lang="en">text</code></p> 10 11 <!-- is strictly inline --> 12 <p><dfn><code class="class" lang="en">text</code></dfn></p> 13 14 <!-- can be empty --> 15 <p>text <code></code></p> 16 <p>text <dfn><code></code></dfn></p> 17 18 <!-- can contain interactive --> 19 <p><code><a>text</a></code></p> 20 <p><dfn><code><a>text</a></code></dfn></p> 21 </body> 22 </html>