Skip to end of metadata
Go to start of metadata
HTML Chart
Tag | Name | Example | View |
---|
<b> | Bold | | Hello World |
<a> | Anchor |
<a href="osulibrary.oregonstate.edu">Hello World</a>
| Hello World |
<ul> | Unordered List |
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
| |
<ol> | Ordered List |
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>
| - Item 1
- Item 2
|
<table> | Table |
<table>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
<tr>
<td>Cell 1 Col 1 </td>
<td>Cell 2 Col 2 </td>
<tr>
<tr>
<td>Cell 3 Col 1 </td>
<td>Cell 4 Col 2 </td>
<tr>
</table>
| Headin 1 | Heading 2 |
---|
Cell 1 Col 1 | Cell 2 Col 2 | Cell 3 Coll 1 | Cell 4 Col 2 |
|