diff --git a/frontend/templates/frontend/base.html b/frontend/templates/frontend/base.html
new file mode 100644
index 0000000..e637e25
--- /dev/null
+++ b/frontend/templates/frontend/base.html
@@ -0,0 +1,19 @@
+
+
+
+
+
+ {% block title %}{% endblock %}
+
+
+
+
+
+
+ {% block content %} {% endblock %}
+
+
diff --git a/frontend/templates/frontend/home.html b/frontend/templates/frontend/home.html
index 435fc35..8580ca7 100644
--- a/frontend/templates/frontend/home.html
+++ b/frontend/templates/frontend/home.html
@@ -1,11 +1,9 @@
-
-
-
-
-
- DroneWars
-
-
- Ciao e benvenuto su DroneWars!
-
-
+{% extends 'frontend/base.html' %}
+
+{% block title %}Home{% endblock %}
+
+{% block content%}
+
+
Ciao
+
+{% endblock %}