--- sidebar_position: 2 --- # HTML Standard Gurted implements a HTML markup language that renders natively through Flumi. This standard supports familiar HTML elements with new features and modern styling capabilities. ## Document Structure Every Gurted document follows a familiar HTML structure: ```html
Normal paragraph text with automatic wrapping
Monospace font paragraph
Sans-serif font (default)
Custom web font
Bold text Italic text Underlined text Small text Highlighted textInline code with monospace
Generic inline container
```
### Preformatted Text
The `` element preserves whitespace and line breaks: ```htmlText in a pre element is displayed in a fixed-width font, and it preserves both spaces and line breaks``` ### Links Links can point to external URLs (which open in the user's default browser) or GURT protocol links: ```html External link GURT protocol link ``` ### Line Breaks Line breaks can be added using the `
` tag: ```htmlFirst line
``` ## Container Elements ### Division Elements Generic containers with full flexbox support: ```html
Second line``` ### Separators Visual dividers for content sections: ```htmlContent Area
Container content
``` ## List Elements ### Unordered Lists Support multiple bullet styles: ```html
```
## Advanced Features
### Custom Fonts
Load and use web fonts:
```html
```
The name provided in the `name` attribute is used for `font-[family]` styling in CSS.
### CSS Selectors
Advanced CSS selector support for complex styling:
```html
```
These will be documented in detail in the CSS section.
### Interactive States
Pseudo-class support for dynamic styling:
```html
Clickable container with pointer cursor
Child elements inherit the cursor style