# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
 
## hh2
just typing like that is considered a paragraph > p
you can use HTML tags as well 
like this *This text* is italic _This text_ is italic **This text** is strong __This text__ is strong ~~This text~~ is strikethrough --- ___ > This is a quote [Header 2](#hh2) [Traversy Media](http://www.traversymedia.com) [Traversy Media](http://www.traversymedia.com "Traversy Media") * Item 1 * Item 2 * Item 3 * Nested Item 1 * Nested Item 2 1. Item 1 2. Item 2 3. Item 3 `

This is a paragraph

` ![Markdown Logo](https://markdown-here.com/img/icon256.png) ```bash npm install npm start ``` ```javascript function add(num1, num2) { return num1 + num2; } ``` ```python def add(num1, num2): return num1 + num2 ``` | Name | Email | | -------- | -------------- | | John Doe | john@gmail.com | | Jane Doe | jane@gmail.com | * [x] Task 1 * [x] Task 2 * [ ] Task 3 * [ ] ---

TIPS FROM COPILOT

  1. Keep It Simple: Markdown is designed to be easy to write and read in its raw form. Stick to the basics for maximum portability and compatibility.
  2. Use Headings Wisely: Organize your content with headings. Start with `#` for the main title, and use `##` and `###` for subsections. Avoid going beyond `###` to keep your document structure flat.
  3. Embrace Lists: Use bullet points for unordered lists and numbers for ordered lists to make your content more scannable.
  4. Link Thoughtfully: When adding links, use descriptive anchor texts so readers know what to expect when they click on a link.
  5. Image Descriptions: Always include alt text for images. This is not only good for SEO but also for users who might be using screen readers.
  6. Code Blocks: Use backticks to create inline code and triple backticks for code blocks. This helps differentiate code from the rest of your text.
  7. Table Formatting: Tables in Markdown are great for organizing data. Use hyphens and pipes to create well-formatted tables.
  8. Blockquotes for Emphasis: Use `>` for blockquotes to highlight important text or to denote quoted content.
  9. Horizontal Rules: Use three or more hyphens, asterisks, or underscores to create a horizontal rule, which can help break up sections of text.
  10. Stay Consistent: Whether it's how you format headers or lists, consistency makes your Markdown easier to read and maintain.