29 lines
961 B
HTML
29 lines
961 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=""/>
|
|
|
|
<h2>Nested p and i</h2>
|
|
<p class="western" align="right" style="font-weight: normal; line-height: 0.17in; orphans: 0; widows: 0">
|
|
Contenido
|
|
<font size="2" style="font-size: 9pt"><i>B.O. de la Provincia de Barcelona</i></font>
|
|
<font size="2" style="font-size: 9pt">, 6-9-1939, citado en Díaz Plaja, F.: "España 1939-1979",</font>
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|