diff --git a/_collection-base/08-visualization/02-graphs/02-python/03-intro-to-dash-widgets.md b/_collection-base/08-visualization/02-graphs/02-python/03-intro-to-dash-widgets.md
index 8e0c25a..c02c12d 100644
--- a/_collection-base/08-visualization/02-graphs/02-python/03-intro-to-dash-widgets.md
+++ b/_collection-base/08-visualization/02-graphs/02-python/03-intro-to-dash-widgets.md
@@ -171,7 +171,7 @@ spacing_style = {'padding': '5px', 'marginTop': '20px', 'marginBottom': '20px'}
**3. Layout of the application**
Define the layout of the app using `app.layout = []` statement, which includes all static components and the structure of the interface.
-*(see section [Dash components](#dash-components)*
+*(see section [Dash components](#dash-components))*
```python
app = Dash(__name__)
@@ -229,7 +229,6 @@ touch dash_app.py
```
3. **Edit File:** Open the file in a text editor and copy-paste the following code snippet:
-
```python
# Import Dash components
from dash import Dash, html, dcc
@@ -249,6 +248,16 @@ touch dash_app.py
if __name__ == '__main__':
app.run(debug=True)
```
+ What the script does?
+
+ *This setup creates a basic interactive web application with a title and a placeholder for a graph.*
+ The provided code:
+ * initializes a Dash application by importing elementary components (`Dash`, `html`, `dcc`),
+ * creates an **app** instance (`app = Dash()`)
+ * and defines the **layout** with a centered title (`html.H1`) and a graph object (`dcc.Graph`). The application layout is assigned to `app.layout`.
+
+ Finally, the app is deployed on a local Python server with `app.run(debug=True)` when the script is run directly.
+ What the script does?
-
-*This setup creates a basic interactive web application with a title and a placeholder for a graph.*
-The provided code:
-* initializes a Dash application by importing elementary components (`Dash`, `html`, `dcc`),
-* creates an **app** instance (`app = Dash()`)
-* and defines the **layout** with a centered title (`html.H1`) and a graph object (`dcc.Graph`). The application layout is assigned to `app.layout`.
-
-Finally, the app is deployed on a local Python server with `app.run(debug=True)` when the script is run directly.
-