26 lines
1007 B
HTML
26 lines
1007 B
HTML
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>PHPWord</title>
|
|
</head>
|
|
<body>
|
|
<h1>Adding element via HTML</h1>
|
|
<p>Some well formed HTML snippet needs to be used</p>
|
|
<p>With for example <strong>some<sup>1</sup> <em>inline</em> formatting</strong><sub>1</sub></p>
|
|
<p>Unordered (bulleted) list:</p>
|
|
<ul><li>Item 1</li><li>Item 2</li><ul><li>Item 2.1</li><li>Item 2.1</li></ul></ul>
|
|
<p>Ordered (numbered) list:</p>
|
|
<ol><li>Item 1</li><li>Item 2</li></ol>
|
|
|
|
<p style="line-height:2">Double height</p>
|
|
|
|
<h2>Includes images</h2>
|
|
<img src="https://phpword.readthedocs.io/en/latest/_images/phpword.png" alt=""/>
|
|
|
|
<img src="http://php.net/images/logos/php-med-trans-light.gif" name="Imagen 12" align="bottom" width="208" height="183" border="0"/>
|
|
<img src="http://php.net/images/logos/php-icon.png" name="Imagen 13" align="bottom" width="143" height="202" border="0"/>
|
|
<img src="http://php.net/images/logos/php-med-trans-light.gif" name="Imagen 14" align="bottom" width="194" height="188" border="0"/>
|
|
|
|
</body>
|
|
</html>
|