diff --git a/tutorials/building-a-simple-web-blog-with-vweb.md b/tutorials/building-a-simple-web-blog-with-vweb.md
index 1f806898af..784c08387a 100644
--- a/tutorials/building-a-simple-web-blog-with-vweb.md
+++ b/tutorials/building-a-simple-web-blog-with-vweb.md
@@ -82,7 +82,7 @@ v run blog.v
and open http://localhost:8080/ in your browser:
-
+
The `App` struct is an entry point of our web application. If you have experience
with an MVC web framework, you can think of it as a controller. (Vweb is
@@ -99,7 +99,7 @@ fn (app mut App) time() {
```
-
+
>You have to rebuild and restart the website every time you change the code.
In the future Vweb will detect changes and recompile the website in the background
@@ -136,7 +136,7 @@ fn (app mut App) index() {
}
```
-
+
Good, now we have an actual HTML page.
@@ -276,7 +276,7 @@ Finally, let's update our view:
v run .
```
-
+
That was very simple, wasn't it?