xhtml_sample_basic.xml 780 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0"?>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
  4. <title>Test document</title>
  5. </head>
  6. <body>
  7. <h1>Header 1</h1>
  8. <p>
  9. Para 1
  10. </p>
  11. <h2>Header 1.1</h2>
  12. <p>
  13. Para 2
  14. </p>
  15. <h1>Header 2</h1>
  16. <p>
  17. Inline <a href="http://example.com">example</a> link.
  18. </p>
  19. <pre>
  20. Some literal text
  21. </pre>
  22. <p>
  23. Inline Image: <img src="http://www.google.com/intl/en_ALL/images/logo.gif"/> image
  24. </p>
  25. <img src="http://www.google.com/intl/en_ALL/images/logo.gif"/>
  26. <p>
  27. Inline tags:
  28. <strong>storng text</strong>
  29. <em>emphasized text</em>
  30. <tt>literal</tt>
  31. <sub>subscript</sub>
  32. <sup>superscript</sup>
  33. <q>quote</q>
  34. <cite>cite title</cite>
  35. <acronym>FBI</acronym>
  36. <code>a = b</code>
  37. </p>
  38. </body>
  39. </html>