diff --git a/docs/index.md b/docs/index.md
index 0353519..75accc9 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -11,6 +11,7 @@
Easy, effortless Web Scraping as it should be!
+
**Stop fighting anti-bot systems. Stop rewriting selectors after every website update.**
@@ -45,7 +46,7 @@ Built for the modern Web, Scrapling has its own rapid parsing engine and its fet
## Key Features
### Advanced Websites Fetching with Session Support
-- **HTTP Requests**: Fast and stealthy HTTP requests with the `Fetcher` class. Can impersonate browsers' TLS fingerprint, headers, and use HTTP3.
+- **HTTP Requests**: Fast and stealthy HTTP requests with the `Fetcher` class. Can impersonate browsers' TLS fingerprint, headers, and use HTTP/3.
- **Dynamic Loading**: Fetch dynamic websites with full browser automation through the `DynamicFetcher` class supporting Playwright's Chromium, real Chrome, and custom stealth mode.
- **Anti-bot Bypass**: Advanced stealth capabilities with `StealthyFetcher` using a modified version of Firefox and fingerprint spoofing. Can bypass all levels of Cloudflare's Turnstile with automation easily.
- **Session Management**: Persistent session support with `FetcherSession`, `StealthySession`, and `DynamicSession` classes for cookie and state management across requests.
diff --git a/docs/parsing/selection.md b/docs/parsing/selection.md
index 659847b..a262f82 100644
--- a/docs/parsing/selection.md
+++ b/docs/parsing/selection.md
@@ -30,7 +30,7 @@ In short, if you come from Scrapy/Parsel, you will find the same logic for selec
To select elements with CSS selectors, you have the `css` and `css_first` methods. The latter is ~10% faster and more valuable when you are interested in the first element it finds, or if it's just one element, etc. It's beneficial when there's more than one, as it returns `Selectors`.
### What are XPath selectors?
-[XPath](https://en.wikipedia.org/wiki/XPath) is a language for selecting nodes in XML documents, which can also be used with HTML. This [cheatsheet] (https://devhints.io/xpath) is a good resource for learning about [XPath](https://en.wikipedia.org/wiki/XPath). Scrapling adds XPath selectors directly through [lxml](https://lxml.de/).
+[XPath](https://en.wikipedia.org/wiki/XPath) is a language for selecting nodes in XML documents, which can also be used with HTML. This [cheatsheet](https://devhints.io/xpath) is a good resource for learning about [XPath](https://en.wikipedia.org/wiki/XPath). Scrapling adds XPath selectors directly through [lxml](https://lxml.de/).
In short, it is the same situation as CSS Selectors; if you come from Scrapy/Parsel, you will find the same logic for selectors here. However, Scrapling doesn't implement the XPath extension function `has-class` as Scrapy/Parsel does. Instead, it provides the `has_class` method, which can be used on elements returned for the same purpose.
diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css
index 09f1a20..b174997 100644
--- a/docs/stylesheets/extra.css
+++ b/docs/stylesheets/extra.css
@@ -1,3 +1,20 @@
.md-grid {
max-width: 90%;
+}
+
+@font-face {
+ font-family: 'Maple Mono';
+ font-style: normal;
+ font-display: swap;
+ font-weight: 400;
+ src: url(https://cdn.jsdelivr.net/fontsource/fonts/maple-mono@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/maple-mono@latest/latin-400-normal.woff) format('woff');
+}
+
+:root {
+ --md-code-font: 'Maple Mono';
+}
+[align="center"] code {
+ font-family: 'Maple Mono';
+ font-style: italic;
+ font-weight: 800;
}
\ No newline at end of file