Learning Markdown
Enclose words/sentences inside _ to make it italic. For example "_red_" will display as "red";
Enclose words/sentences inside ** to make it bold. ( "**bold**" becomes "bold");
Headers are available from level 1 to level 6, 1 being the largest. # for level 1 and ###### for level 6.
Headers can't be bold, but can be Italic
There are two ways to create a link.
Inline Links : First way is to enclose text in [] and link in (). For example, [Visit Github](https://www.github.com\) would give you Visit Github.
Reference Link : Links to another place in a document. It is just like appendix?
For example, [a link to github] [github link]
[github link]: https://www.github.com (This should be placed(not necessarily, but for your own convenience at the bottom of the markdown). Later, when we want to change the link, we can only change it at one place. Would produce: a link to github
6. Creating images is same like creating links. Just add ! before the enclosing text.
For example, to create an inline image link to https://octodex.github.com/images/bannekat.png, with an alt text that says, Benjamin Bannekat, you'd write this in Markdown: .

For a reference image, you'll follow the same pattern as a reference link. You'll precede the Markdown with an exclamation point, then provide two brackets for the alt text, and then two more for the image tag, like this:
![The founding father][Father]
At the bottom of your Markdown page, you'll define an image for the tag, like this:
[Father]: http://octodex.github.com/images/founding-father.jpg.
