diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..8bc3a49
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
Forward
+
Backward
+
Top 100
+
+
+
+
+
{{ columNames }}
+ {% set count = 1 %}
+ {% for player in playerList %}
+ {% if count % 2 == 0 %}
+
{{ player.getLineHTML() }}
+ {% else %}
+
{{ player.getLineHTML() }}
+ {% endif %}
+
+ {% set count = count + 1 %}
+ {% endfor %}
+
+
+
+