xhtml_sample_basic_indented.xml 835 B

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