html 和 xhtml 的主要不同
最主要的不同:
* XHTML 元素必须被正确地嵌套。
<ul> <li>Coffee</li> <li>Tea <ul> <li>Black tea</li> <li>Green tea</li> </ul> </li> <li>Milk</li></ul>
<p>This is a paragraph</p><p>This is another paragraph</p>
A break: <br />A horizontal rule: <hr />An image: <img src="happy.gif" alt="html 跟 xhtml 的主要不同" />
<body><p>This is a paragraph</p></body>
<html><head> ... </head><body> ... </body></html>