# Creating Basic Pages in ReadME Framework

## File Structure

## 1. Creating a New Page

### Minimal Page Example (`example-page.md`)

```markdown
---
title: "Example Page"
description: "This is a sample page demonstration"
---

```tabs
name: Example Tabs

=== Tab 1
Content for first tab

=== Tab 2
```javascript
// Code in second tab
console.log("Tab 2");
```



To learn more about markdown file extensions, go [here](https://www.markdownguide.org/).

For simple style CSS, go [here](https://getweb.dev/).