Markdown and GitHub pages:
Markdown
Markdown is a simple and lightweight syntax for formatting many types of web content. You have complete control over how the text appears; bolding or italicizing phrases, inserting photos, and making lists are just a few of the things we can do with Markdown. Markdown is mostly simply plain text with a few non-alphabetic characters tossed in like #,+.
why we use markdown:
- Websites, papers, notes, books, presentations, email messages, and technical documentation are all can be created using it.
- Files containing Markdown-formatted content may be opened with almost any program.
- You may import your Markdown files into another Markdown application if you decide you don’t like the Markdown program you’re presently using.
- Markdown-formatted text may be created on any device running any operating system.
- You can read your Markdown-formatted content with a text editing program even if the application you’re using stops operating in the future.
- Markdown is supported by many desktop and web-based apps, including Reddit and GitHub.
more here
Markdown can use most places around GitHub:
- Gists
- Comments in Issues and Pull Requests
- Files with the .md or .markdown extension
Example of how using markdown:
1.Text:
we can style the text in deffrent ways like Bold ,Italic , Strikethrough , Bold and nested italic , All bold and italic
- Quoting text
we can Quoting text like this
- Quoting code
```HTML
html code
```
- add lists
we ether can add orderd list or unorderd list:
orderd like:
- 1
- 2
- 3
unorderd:
- you can create a heading, add one to six
#
one is the bigger and 6 is the smallest one
- add images

GitHub pages:
GitHub Pages use to host a website about your work or your organization, or your project directly from a GitHub repository.
You can use Jekyll, a popular static site generator, to further customize your GitHub Pages site.
you also can customize the domain name of your GitHub Pages site,and you can Adding a theme to your GitHub Pages site with the theme chooser
GitHub Pages is a static site hosting service that accepts HTML, CSS, and JavaScript files directly from a GitHub repository, runs them through a build process if desired, and then publishes a website.
You can host your site on GitHub’s github.io
domain or your own custom domain.
Project, user, and organization pages are the 3 types of GitHub Pages sites. Project sites are linked to a specific GitHub project, such as a JavaScript library or a collection of recipes. A user’s or an organization’s site is linked to a GitHub account.