# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
*This text* is italic
_This text_ is also italic
This text is italic
This text is also italic
**This text** is strong
__This text__ is also strong
This text is strong
This text is also strong
~~This text~~ is strikethrough
This text is strikethrough
---
___
> This is a quote
This is a quote
[Google](http://www.google.com)
[Google](http://www.google.com "Google")
* Item 1
* Item 2
* Item 3
* Nested Item 1
* Nested Item 2
-
Item 1
-
Item 2
-
Item 3
- Nested Item 1
- Nested Item 2
1. Item 1
1. Item 2
1. Item 3
- Item 1
- Item 2
- Item 3
`<p>This is a paragraph</p>`
<p>This is a paragraph</p>
![Markdown Logo](https://raw.githubusercontent.com/SStranks/MyFirstRepository/master/HeartandBrain.jpg)
Note: To codeblock the 'codeblock triple backtick'; parent nesting object uses higher integer of ticks (four).
```bash
npm install
npm start
```
npm install
npm start
```javascript
function add(num1, num2) {
return num1 + num2;
}
```
function add(num1, num2) {
return num1 + num2;
}
```python
def add(num1, num2):
return num1 + num2
```
def add(num1, num2):
return num1 + num2
| Default Header | Left Align | Center Align | Right Align |
| -------------- | :------------ | :----------: | ----------: |
| John Doe | [email protected] | 0207 1111 9999 | Westminster SW1A 0AA
| Jagger | [email protected] | 0207 2222 8888 | The Eye SE1 7PB
Default Header | Left Align | Center Align | Right Align |
---|---|---|---|
John Doe | [email protected] | 0207 1111 9999 | Westminster SW1A 0AA |
Jagger | [email protected] | 0207 2222 8888 | The Eye SE1 7PB |
* [x] Task 1
* [x] Task 2
* [ ] Task 3
- Task 1
- Task 2
- Task 3