HTML5-entry 2 ., Html5-entry 2
Text Style
<B> bold </B>
<I> skew </I>
<U> underline </u>
<S> strikethrough </s>
<Sub> subscript </sub>
<Sup> superscript </sup>
<p>
Section Elements
</p>
<Br/> force line feed
<Hr/> split line
Create a table
Table
Tr (ROW)
Td (column) cellspacing: Set the outer margin cellpadding: Set the inner margin align: horizontal to its way left/right/center valign: set the table title in the top/middle/bottom caption mode horizontally, which must be displayed on the table following the table
<table border="1" width="300px" height="300px" cellspacing="0" cellpadding="0"> <tr width="20" align="center" valign="middle"> <td>1</td> <td>2</td> <td>3</td></tr> <tr align="center" valign="middle"> <td>4</td> <td>5</td> <td>6</td> </tr> <tr align="center" valign="middle"> <td>7</td> <td>8</td> <td>9</td>
</tr></table>
List
No serial number list:
<ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li></ul>
List of serial numbers:
<ol> <li>a</li> <li>b</li> <li>c</li> <li>d</li> <li>e</li></ol>