diff --git a/Website/apiConnector.js b/Website/apiConnector.js
new file mode 100644
index 0000000..9e40e55
--- /dev/null
+++ b/Website/apiConnector.js
@@ -0,0 +1,8 @@
+const apiUri = "http://localhost:5177";
+
+function GetTasks(){
+ var getTaskUri = apiUri + "/Tasks/GetList";
+ fetch(getTaskUri)
+ .then(response => response.json())
+ .catch(error => console.error('Unable to get items.', error));
+}
\ No newline at end of file
diff --git a/Website/index.html b/Website/index.html
index b03e6d1..10f6daf 100644
--- a/Website/index.html
+++ b/Website/index.html
@@ -40,6 +40,7 @@
+