**Bold***Emphasized*~~Strikethrough~~--- (three hyphens), *** (three asterisks), or ___ (three underscores).All heading levels (e.g. H1, H2, etc), are marked by # at the beginning of a line. For example, an H1 is # Heading 1 and an H2 is ## Heading 2. This continues to ###### Heading 6.
Links can be created using several methods:
[inline](https://markdowntohtml.com)[have a title](https://markdowntohtml.com "Awesome Markdown Converter")[reference link][markdowntohtml] that links to this site.[this link][MarkDownToHTML] works).[use numbers][1].[link text itself].<https://markdowntohtml.com>.URLs for reference links are somewhere later in the document like this:
[markdowntohtml]: https://markdowntohtml.com
[1]: https://markdowntohtml.com
[link text itself]: https://markdowntohtml.comImages can also be inline or use a reference style, similar to links. Simply prepend an exclamation point to turn the link into an image. For example:
Images with the full URL: 
Or, a reference-style image: ![alt text][bears].
[bears]: https://placebear.com/300/300
<strong>SEO-Markdown</strong>: * One item
* Another item
* A sub-item
* A deeper item
* Back in sub-item land
* And back at the main level
Unordered lists can use an asterisk (*), plus (+), or minus (-) to indicate each list item. Ordered lists use a number at the beginning of the line. The numbers do not need to be incremented โ this will happen for you automatically by the HTML. That makes it easier to re-order your ordered lists (in markdown) as needed. Also, ordered and unordered lists can be nested within each other. For example: * One item
* Another item
1. A nested ordered list
1. This is the second item
* And now an unordered list as its child
* Another item in this list
1. One more in the ordered list
* And back at the main level
`backticks` around it. Code blocks are either fenced by three backticks (```) or indented four spaces. For example: ```
var foo = 'bar';
function baz(s) {
return foo + ':' + s;
}
``` > to offset text as a blockquote. For example: > This is some part of a blockquote.
> Some more stuff. Will produce: This is some part of a blockquote. Some more stuff.
To create headings, use the <h1> to <h6> tags. The number of tags indicates the level of the heading, with <h1> being the highest level and <h6> being the lowest level.
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
To emphasize text or make it bold, use the <em> and <strong> tags.
<em>Emphasized text</em>
<strong>Bold text</strong>
To create an unordered list, use the <ul> tag and wrap each item with the <li> tag.
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
To create an ordered list, use the <ol> tag and wrap each item with the <li> tag.
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
To create a link to an external website, use the <a> tag with the href attribute specifying the URL.
<a href="https://www.example.com">Link text</a>SEO-Markdown:
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<em>Emphasized text</em>
<strong>Bold text</strong>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
<a href="https://www.example.com">Link text</a>
<img src="image.jpg" alt="Image">
<pre>
<code>
// Code block
function example() {
return "Hello, World!";
}
</code>
</pre>
<hr>
<blockquote>
This is a blockquote.
</blockquote>
Automated page speed optimizations for fast site performance