Code Playground

Output

Examples

Heading

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>

Paragraph

<p>This is paragraph.</p>

Link

<a href="https://www.google.com" >Visit Google</a>

Image

<img src="https://via.placeholder.com/300" alt="Sample Image" width=“300">

Ordered List

<ol>
 <li>First item</li>
 <li>Second item</li>
 <li>Third item</li>
</ol>

Unordered List

<ul>
 <li>Item one</li>
 <li>Item two</li>
 <li>Item three</li>
</ul>

Table

<table border="1">
  <tr>
   <td>John</td>
   <td>15</td>
   <td>10th</td>
  </tr>
  <tr>
   <td>Jane</td>
   <td>14</td>
   <td>9th</td>
 </tr>
</table>