read 01: ## Learning Markdown From this link: ### Mastering Markdown ### · GitHub Guides

I’ve learned that Markdown is a syntax for styling all forms of writing on the GitHub platform.

And how to use it to:

Also, there is an overview of Markdown syntax that we can use for the following:

Headers, Emphasis, Lists, Images, Links Blockquotes, and Inline code.

As an example of how easy it is: ** ** Using as opening and closing to make text Bold / * * to make it Italic. the number of “#” represent the number of h like: # = h1, ## = h2, ### = h3 … ###### = h6

Whereas with GitHub Flavored Markdown: we can use it for the following: Syntax highlighting, Task lists, Tables, SHA references, Issue references with a repository… etc.

From this link: Github Pages

I’ve learned that GitHub Pages lets you turn GitHub repositories into elegant websites to:

you can upload your files and folders to it or drag and drop it. Also of you want to built something like blog or structured documentation, GitHub pages gives you a streamlined publishing with the help of Jekyll that is an open source tool that transforms plain text files into websites, it is also support things like variables templates and drafts which give you over the format and presentation of your website.