暫無描述

reader.html 466B

123456789101112131415
  1. <html>
  2. <head>
  3. <meta charset="UTF-8" />
  4. <title>PHPWord</title>
  5. </head>
  6. <body>
  7. <h1>Adding element via HTML</h1>
  8. <p>Some well formed HTML snippet needs to be used</p>
  9. <p>With for example <strong>some<sup>1</sup> <em>inline</em> formatting</strong><sub>1</sub></p>
  10. <p>Unordered (bulleted) list:</p>
  11. <ul><li>Item 1</li><li>Item 2</li><ul><li>Item 2.1</li><li>Item 2.1</li></ul></ul>
  12. <p>Ordered (numbered) list:</p>
  13. <ol><li>Item 1</li><li>Item 2</li></ol>
  14. </body>
  15. </html>