diff --git a/README.md b/README.md
index 936a25df2cb2bfecf29b991d980d24b1c79e0719..68a8487e064c7e1dd90fe3c926b99e3c150d0792 100644
--- a/README.md
+++ b/README.md
@@ -119,14 +119,14 @@ A NetApp development running as a Provider would typically follow this process s
       provider = CAPIFProviderConnector(config_file=utilities.get_config_file())
     ```
 
-2. **Onboard the Provider:**
+2. **Onboard the Provider:** \
     Register the provider with the CAPIF system to enable the publication of APIs:
 
     ```python
       provider.onboard_provider()
     ```
 
-3. **Prepare API details:**
+3. **Prepare API details:** \
    Locate the provider API details in the username folder. Choose the APF (Application Programming Function) and AEFs (Application Enabling Functions) identifiers, and fulfill the publish_req structure and the api_description_path:
 
 <p align="center">
@@ -134,7 +134,7 @@ A NetApp development running as a Provider would typically follow this process s
   <img src="./doc/images/publish_req-example.png" alt="config-example"  width="400"/>
 </p>
 
-4. **Publish the services:**
+4. **Publish the services:** \
    Use the publish_services() method to register the APIs with the CAPIF framework:
 
     ```python