You can create navbar in HTML file. But note that the link begins with `#/`.
*index.html*
```html
<body>
<nav>
<ahref="#/">EN</a>
<ahref="#/zh-cn/">中文</a>
</nav>
<divid="app"></div>
</body>
```
## Writing by Markdown
You can custom navbar by Markdown file. Set the `loadNavbar` to **true** and create a `_navbar.md`. The detail in [Configuration#load-navbar](configuration#load-navbar).
*index.html*
```html
<script>
window.$docsify = {
loadNavbar: true
}
</script>
<scriptsrc="//unpkg.com/docsify"></script>
```
*_navbar.md*
```markdown
- [En](/)
- [chinese](/zh-cn/)
```
`_navbar.md` is loaded from each level directory. If this directory doesn't have `_navbar.md`, it will fallback to parent directory. For example, the current path is `/guide/quick-start`, the `_navbar.md` will be loaded from `/guide/_navbar.md`.
## Nesting
You can create sub-lists by indenting items that are under a certain parent.