Learn MarkDown in 5 min

๐ Hey! I'm Prakash Naikwadi. I have a Bachelor's degree in Computer Engineering๐คฉ
I am currently learning๐ ๐๐๐๐ ๐๐ญ๐๐๐ค ๐๐๐ฏ๐๐ฅ๐จ๐ฉ๐ฆ๐๐ง๐ญ.
๐ ๐๐ข๐ญ๐๐ฎ๐ ๐๐ซ๐จ๐๐ข๐ฅ๐: https://github.com/prakash-naikwadi
๐๐๐ซ๐ ๐๐ซ๐ ๐๐จ๐ฆ๐ ๐ฌ๐ค๐ข๐ฅ๐ฅ๐ฌ๐๐ญ๐ฌ ๐ญ๐ก๐๐ญ ๐ ๐๐จ๐ฌ๐ฌ๐๐ฌ๐ฌ๐๐...
๐
๐ซ๐จ๐ง๐ญ ๐๐ง๐:
โข HTML5 (Intermediate Level)
โข CSS (Intermediate Level)
โข JavaScript
โข React
๐๐ซ๐จ๐ ๐ซ๐๐ฆ๐ฆ๐ข๐ง๐ ๐๐๐ง๐ ๐ฎ๐๐ ๐๐ฌ: โข Java โข C โข C++
Thank you for reading. Have a wonderful day๐ค
We have all seen GitHub repositories
readme.mdfile used for project explanation. In today's world, we should explain our code through our readme files as no one can understand your code right away. Here I have simplified and tried to explain majorly used elements that you can right away start to write markdown files.
Heading Elements
Just like HTML, there are 6 heading elements in markdown
# Heading1
## Heading2
### Heading3
#### Heading4
##### Heading5
###### Heading6
Output:
Heading1
Heading2
Heading3
Heading4
Heading5
Heading6
List Elements
Just like HTML, there are ordered list and unordered list in markdown
#####Ordered List:
1. One
2. Two
3. Three
1. One
2. Two
#####Unordered List:
- One
- Two
- Three
- One
- Two
Output:
Ordered List:
- One
- Two
- Three
- One
- Two
Unordered List:
- One
- Two
- Three
- One
- Two
Adding Links
Just like HTML, there is an option to add links in markdown
[LinkedIn Link](https://www.linkedin.com/in/prakash-naikwadi/)
Output:
Adding Images
Just like HTML, there is an option to add images in markdown

Output:
Adding bold, italic, and strikethrough
##### Two ways to make text bold:
**Bold Text**
__Bold Text__
##### Two ways to make the text italic:
*Italic Text*
_Italic Text_
##### Make text strikethrough:
~~strikethrough~~
Output:
Two ways to make text bold:
Bold Text
Bold Text
Two ways to make the text italic:
Italic Text
Italic Text
Make text strikethrough:
strikethrough
Adding horizontal line using *** or ___
Hello World
___
Let's Code
***
See You Soon
Output:
Hello World
Let's Code
See You Soon
Adding blockquote using >
> Hello, this is the blockquote element.
Output:
Hello, this is the blockquote element.





