React is being used as a templating engine for rendering static markup. You can leverage on the expressability of React to build rich web content. Learn more about creating pages [here](custom-pages).
1. Create a new file in the `docs` folder called `f8.md`.
1. Paste the following contents:
```
---
id: f8
title: Hello F8
---
Hello F8! I'm at the Docusaurus classroom session!
## Using Docusaurus to Create Open Source Websites
In this session, we learned how Docusaurus makes it really simple to create a website for open source project documentation and get hands on by creating a Docusaurus website.
4. Kill your webserver (<kbd>Cmd</kbd> + <kbd>C</kbd> or <kbd>Ctrl</kbd> + <kbd>C</kbd>) and restart it (with `npm run start`) because a server restart is needed for sidebar changes.
You've created your first documentation page on Docusaurus! The `sidebars.json` is where you specify the order of your documentation pages and in the front matter of the Markdown file is where you provide metadata about that page.
Learn more about creating docs pages [here](navigation).