Convert Markdown to HTML

This is a free online tool for converting Markdown to HTML.


What is Markdown?

Markdown is a lightweight markup language for creating formatted text using a plain-text editor. It is often used to write web documents quickly and concisely. Markdown's syntax is intuitive and easy to learn, making it accessible to everyone.

Key Markdown Syntax and Corresponding HTML Tags

Markdown Syntax Description Converted HTML Tags
# Heading 1 Main heading <h1>Heading 1</h1>
## Heading 2 Subheading <h2>Heading 2</h2>
### Heading 3 Sub-subheading <h3>Heading 3</h3>
- Item 1 Unordered list <ul><li>Item 1</li></ul>
1. Item 1 Ordered list <ol><li>Item 1</li></ol>
[Link](http://url) Hyperlink <a href="http://url">Link</a>
**Bold** Bold text <strong>Bold</strong>
*Italic* Italic text <em>Italic</em>
`Code` Inline code <code>Code</code>
![Image](img.jpg) Image <img src="img.jpg" alt="Image">