diff --git a/docs/docs/guides/ens/index.md b/docs/docs/guides/ens/index.md
index 78de32fc4fb..a55f9662799 100644
--- a/docs/docs/guides/ens/index.md
+++ b/docs/docs/guides/ens/index.md
@@ -6,6 +6,8 @@ title: Mastering the Web3 ENS package
# Using web3.js ENS Package
+
+
In this tutorial, we'll explore how to use the web3.js ENS (Ethereum Name Service) package. The Ethereum Name Service (ENS) is a decentralized domain system built on the Ethereum blockchain. It serves as a distributed, secure, and human-readable naming system designed to map Ethereum addresses, smart contracts, and various other services to easily understandable names.
## Installing web3.js
@@ -115,4 +117,4 @@ console.log(result);
## Conclusion
-In this tutorial, we've covered how to use the web3.js ENS package to interact with Ethereum Name Service. You should now be able to perform various ENS-related operations using web3.js version 4. For more details visit web3.js ENS [documentation](/libdocs/ENS) section.
\ No newline at end of file
+In this tutorial, we've covered how to use the web3.js ENS package to interact with Ethereum Name Service. You should now be able to perform various ENS-related operations using web3.js version 4. For more details visit web3.js ENS [documentation](/libdocs/ENS) section.
diff --git a/docs/docs/guides/events_subscriptions/index.md b/docs/docs/guides/events_subscriptions/index.md
index b17baceec12..bd4ed1a3387 100644
--- a/docs/docs/guides/events_subscriptions/index.md
+++ b/docs/docs/guides/events_subscriptions/index.md
@@ -4,6 +4,7 @@ sidebar_label: 'Mastering Events Subcriptions'
---
# Events Subscription
+
## Subscribing to smart contracts events
diff --git a/docs/docs/guides/getting_started/metamask.md b/docs/docs/guides/getting_started/metamask.md
index 714360b9665..e40db544ac6 100644
--- a/docs/docs/guides/getting_started/metamask.md
+++ b/docs/docs/guides/getting_started/metamask.md
@@ -5,6 +5,9 @@ sidebar_label: Connecting to Metamask
# Connecting to Metamask
+
+
+
## React app
After creating your react app `npx create-react-app app-name`, and installing web3 `npm i web3` you can go to `src/app.js`, you can clean up the code and import `{Web3}`. It should look like this:
@@ -186,4 +189,4 @@ export default App;