# Import Files
Include content from other files using the `@import` directive.
## Syntax
```html
```
The directive is replaced with the contents of the referenced file during build.
## Examples
Include a shared header:
```html
```
Include a code file:
```html
```
## Recursive Imports
Imported files can contain their own `@import` directives. guidebook handles these recursively and detects circular imports to prevent infinite loops.
## Path Resolution
Paths are relative to the file containing the `@import` directive.