Markdown supports creating horizontal Rules or line

There are multiple ways we can create a horizontal line in markdown content.

Markdown horizontal rule

We can create a horizontal rule using four ways.

  • three Asterisks
  • three hyphens
  • three underscore
  • html hr tag

Here is a markdown code horizontal rule

***
three or more Asterisks
___
three or more underscores

---
three or more hyphens

<hr/>
html hr tag

Output:


three or more Asterisks ___ three or more underscores

--- three or more hyphens


html hr tag