web app added
diff --git a/web_app/templates/base.html b/web_app/templates/base.html
new file mode 100644
index 0000000..2067d55
--- /dev/null
+++ b/web_app/templates/base.html
@@ -0,0 +1,14 @@
+<!doctype html>
+<html>
+ <head>
+ {% block head %}
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
+ <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
+ {% endblock %}
+ </head>
+ <body>
+ {% block body %}
+ {% endblock %}
+ </body>
+</html>
\ No newline at end of file