This post shows you how to write headers in different sizes using Markdown.
# This is an <h1> tag

## This is an <h2> tag

### This is an <h3> tag

#### This is an <h4> tag

##### This is an <h5> tag

###### This is an <h6> tag
Read more
This post shows you how to put emphasis on specific text using Markdown.
*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__
Read more
This post shows you how to create ordered and unordered lists using Markdown.
1. Ordered list item 1
   1. Ordered sub-list item 1
3. Ordered list item 2
   * Unordered sub-list item 1
  1. Ordered list item 1
    1. Ordered sub-list item 1
  2. Ordered list item 2
    • Unordered sub-list item 1
Read more
This post shows you how to add images using Markdown.
inline-style image:

![alt text](http://sergiu-tripon.com/assets/img/projects/photography-portfolio/photography-portfolio-img-3.png "Sergiu's Photography Portfolio - Image 3")

inline-style image:

alt text

Read more
This post shows you how to add links using Markdown.
[inline-style link](https://github.com/)
[relative inline-style link to a repository file](../blob/master/LICENSE)
[inline-style link with title](https://github.com/ "GitHub's homepage")
[reference-style link][reference link 1]
[reference-style link with number][1]
[use the reference-style link itself]

<http://www.this-is-also-a-link.com>

[reference link 1]: https://github.com/
[1]: https://github.com/
Read more
This post shows you how to add blockquotes using Markdown.
As Kanye West said:

> We're living the future so
> the present is our past.

As Kanye West said:

We’re living the future so the present is our past.

This post shows you how to add inline code or code blocks using Markdown.
`inline code`

inline-code

```javascript
variable = "javascript code";
alert(variable);
```
variable = "javascript code";
alert(variable);
Read more
This post shows you how to add html code using Markdown.
<b>bold text using html</b>
<p>paragraph using html</p>

bold text using html

paragraph using html

This post shows you how to add embeds using Markdown.

Youtube:

<div class="embed embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" width="560" height="315" src="https://www.youtube.com/embed/afvT1c1ii0c" frameborder="0" allowfullscreen></iframe>
</div>
Read more
This post shows you how to add GitHub Gists using Markdown.
# line below wrapped in liquid open and close tags
gist SergiuTripon/bf0b097336814276baacf56802965de3
Read more