Editing HTML

HTML Chart

TagNameExampleView
<b>Bold
<b>Hello World</b>
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>
  • Item 1
  • Item 2
<ol>Ordered List
<ol>
   <li>Item 1</li>
   <li>Item 2</li>
</ol>
  1. Item 1
  2. 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 1Heading 2
Cell 1 Col 1Cell 2 Col 2
Cell 3 Coll 1Cell 4 Col 2