> ## Documentation Index
> Fetch the complete documentation index at: https://docs.encord.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Objects.html node

## HtmlNode Objects

```python theme={"dark"}
class HtmlNode(BaseDTO)
```

A class representing a single HTML node, with the xpath and offset.

**Attributes**:

* `xpath` *str* - The xpath of the node
* `offset` *int* - The offset of the content from the xpath

## HtmlRange Objects

```python theme={"dark"}
class HtmlRange(BaseDTO)
```

A class representing a section of HTML with a start and end node.

**Attributes**:

* `start` *HtmlNode* - The starting node of the range.
* `end` *HtmlNode* - The ending node of the range.
