Using Embedded HTML in Markdown

Although Markdown is designed to be a simple and lightweight markup language, it also allows you to use embedded HTML code. This can be useful if you need to create more complex formatting or add features not supported by Markdown syntax. For example, you can use HTML to create tables or add custom CSS styles to your content.

For example, to create a table using HTML in Markdown:

<table>
  <tr>
    <th>Header 1</th>
    <th>Header 2</th>
  </tr>
  <tr>
    <td>Row 1, Column 1</td>
    <td>Row 1, Column 2</td>
  </tr>
  <tr>
    <td>Row 2, Column 1</td>
    <td>Row 2, Column 2</td>
  </tr>
</table>

img