sample.xml 678 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <!--
  4. This is a comment.
  5. -->
  6. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  7. <head>
  8. <link rel="stylesheet" href="styles.css" type="text/css"/>
  9. <?xml-stylesheet href="styles.css" type="text/css"?>
  10. <title>A XHTML Example</title>
  11. </head>
  12. <body>
  13. <h1>XHTML Example</h1>
  14. <p>This is a XHTML example page.</p>
  15. <img src="example.gif" width="256" height="192" alt="Example Picture" border="0"/>
  16. <![CDATA[
  17. The following <tag attr="value">is inside a CDATA section</tag>.
  18. ]]>
  19. </body>
  20. </html>