` tag.
```html
```
1. To check the collapsed section has rendered correctly, click the **Preview** tab.
### Example of a collapsed section
```html
My top languages
| Rank | Languages |
|-----:|-----------|
| 1| JavaScript|
| 2| Python |
| 3| SQL |
```
### How the collapsed section looks

## Adding a quote
Markdown has many other options for formatting your content. Here, you'll add a horizontal rule to divide your page and a blockquote to format your favorite quote.
1. At the bottom of your file, two lines below the ` ` tag, add a horizontal rule by typing three or more dashes.
```markdown
---
```
1. Below the `---` line, add a quote by typing markup like the following.
```markdown
> QUOTE
```
Replace `QUOTE` with a quote of your choice. Alternatively, copy the quote from our example below.
1. To check everything has rendered correctly, click the **Preview** tab.
### Example of a quote
```markdown
---
> If we pull together and commit ourselves, then we can push through anything.
— Mona the Octocat
```
### How the quote looks

## Adding a comment
You can use HTML comment syntax to add a comment that will be hidden in the output. Here, you'll add a comment to remind yourself to update your {% ifversion ghae %}gist{% else %}README{% endif %} later.
1. Two lines below the `## About me` header, insert a comment by using the following markup.
<!-- COMMENT -->
Replace `COMMENT` with a "to-do" item you remind yourself to do something later (for example, to add more items to the table).
1. To check your comment is hidden in the output, click the **Preview** tab.
### Example of a comment
## About me
<!-- TO DO: add more details about me later -->
## Saving your work
When you're happy with your changes, save your {% ifversion ghae %}gist.
- To keep your gist hidden from search engines but visible to anyone you share the URL with, click **Create secret gist**
- If you're happy for your gist to be visible to anyone on {% data variables.location.product_location %}, click **Create internal gist**
{% else %}profile README by clicking **Commit changes**.
Committing directly to the `main` branch will make your changes visible to any visitor on your profile. If you want to save your work but aren't ready to make it visible on your profile, you can select **Create a new branch for this commit and start a pull request**.
{% endif %}
## Next steps
- Continue to learn about advanced formatting features. For example, see {% ifversion fpt or ghec %}"[AUTOTITLE](/get-started/writing-on-github/working-with-advanced-formatting/creating-diagrams)" and {% endif %}"[AUTOTITLE](/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks)."
- Use your new skills as you communicate across GitHub, in issues, pull requests, and discussions. For more information, see "[AUTOTITLE](/get-started/using-github/communicating-on-github)."