diff --git a/shorturl/templates/base-layout.html b/shorturl/templates/base-layout.html
new file mode 100644
index 0000000..4d92dbd
--- /dev/null
+++ b/shorturl/templates/base-layout.html
@@ -0,0 +1,38 @@
+{% load static %}
+
+
+
+
+
+ Hello World!
+
+
+
+
+
+
+
+
+
+
+
+ {% block container %}
+ {% endblock %}
+
+
+
+
+
+
diff --git a/shorturl/templates/card.html b/shorturl/templates/card.html
new file mode 100644
index 0000000..f92512a
--- /dev/null
+++ b/shorturl/templates/card.html
@@ -0,0 +1,24 @@
+{% extends "base-layout.html" %}
+{% block container %}
+
+
+
+
+
+
+
$29 / mo
+
+ - 30 users included
+ - 15 GB of storage
+ - Phone and email support
+ - Help center access
+
+
+
+
+
+
+
+{% endblock %}
diff --git a/shorturl/templates/index.html b/shorturl/templates/index.html
index e01a295..c8131a5 100644
--- a/shorturl/templates/index.html
+++ b/shorturl/templates/index.html
@@ -1,63 +1,9 @@
-{% load static %}
-
-
-
-
-
- Hello World!
-
-
-
-
-
-
-
+{% extends "base-layout.html" %}
+{% block container %}
-
+
-
-
-
-
-
-
-
-
-
$29 / mo
-
- - 30 users included
- - 15 GB of storage
- - Phone and email support
- - Help center access
-
-
-
-
-
-
-
-
-
-
-
-
+{% endblock %}