# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
*Italics*
**Bold text**
***Bold and Italics***
~~Striked Text~~
Italics
Bold Text
Bold and Italics
Striked Text
Unordered list
* list1
* list2
* sublist1
* sublist2
- List item-1
- List item-2
- Sublist-1
- Sublist-2
Ordered list
1. First
2. Second
3. Third
1. Three / One
2. Three / Two
4. Fourth
- First item
- Second item
- Third item
- Indented item
- Indented item
- Fourth item
* [This is a link to GitHub](https://github.com "GitHub Home Page")
* <https://www.google.com/>
![GitHub Logo](https://cdn4.iconfinder.com/data/icons/iconsimple-logotypes/512/github-512.png "GitHub Logo")
As same as links, but add an exlamation mark (!) before opening square bracket.
The square bracket contains alt
for the image and parenthesis contains image source.
Image source can be either a location from the local machine or any valid image URL.
the last part contains additional information about the image shown when use hovers through it.
To open another webpage when image is clicked, enclose the Markdown for the image in brackets, and then add the link in parentheses.
[![GitHub Logo](https://cdn4.iconfinder.com/data/icons/iconsimple-logotypes/512/github-512.png "GitHub Logo")](https://github.com/)
We use HTML along markdown to resize images easily.
<img src="https://cdn4.iconfinder.com/data/icons/iconsimple-logotypes/512/github-512.png" height="50%" width="50%">
by using height=""
and width=""
we can resize images easily. in the example, we used 50% so the image size has decreased to 50% of the image.
|Header1|Header2|Header3|
| --- | --- | --- |
| This | is a | table |
| This | is 2nd | row |
| This | is 3rd | row |
Header1 | Header2 | Header3 |
---|---|---|
This | is a | table |
This | is 2nd | row |
This | is 3rd | row |
* [ ] Checkbox1
* [ ] Checkbox2
* [x] Checkbox selected
or
- [ ] Checkbox1
- [ ] Checkbox2
- [x] Checkbox selected
-
Checkbox1
-
Checkbox2
-
Checkbox selected
using
- [ ]
or* []
makes no difference. it shows the same checkboxes. You can use both.
> This is a block quoted text
This is a block quoted text
***
___
---
All three will be rendered as:
There are three ways to add code in markdown
- Inline Code (single backtick)
- Whitespace (Four Spaces Indentation)
- Fenced Code Block (Three Backticks or Tildes)
`this` is an example of inline code.
'''
console.log('Used backticks to show snippets')
'''
console.log('four whitespace works too!')
this
is an example of inline code.
console.log('Used backticks to show snippets')
console.log('four whitespace works too!')
If language name is mentioned after the end of first set of backticks, the code snippet will be highlighted according to the language.
```js
console.log('javascript')
```
```python
print('python')
```
```java
System.out.println('java')
```
```json
{
"firstName": "Kaushal",
"lastName": "Joshi
"age": 18
}
```
console.log('javascript')
print('python')
System.out.println('java')
{
"firstName": "Kaushal",
"lastName": "Joshi",
"age": 18
}
*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_
This text will be italic This will also be italic
This text will be bold This will also be bold
You can combine them
You can add
<br>
between lines to insert a break
This text has a break in between that will make the second part
to be written onto the next line.