diff --git a/README.md b/README.md
index 1613a3b0..db382ca9 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
# GitHub Tracker
-Replace this readme with your own information about your project.
-
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
+The assignment was to creata a GitHub tracker that used APIs to keep track of all my projects forked by Technigo in Github. We also had to creat a chart to show our progress.
## The problem
-Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next?
+This week it was most difficult to understand how to use the APIs from Github and collect the right information. Past week the APIs were more straight forward compared to this week.
+
+I learnt a lot about how to style from the script file, something I was a bit worried about since we had to style things that didn't excist in the HTML from the beginning. But I noticed that it wasn't that complicated.
## View it live
-Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about.
+https://lisapblome-w7-githubtracker.netlify.app/
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..356f6a94 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,27 @@
-//DOM-selector for the canvas 👇
const ctx = document.getElementById('chart').getContext('2d')
-//"Draw" the chart here 👇
+const drawChart = (amount) => {
+const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Projects done',
+ 'Projects left',
+ 'Projects in total'
+
+ ],
+ datasets: [{
+ label: 'My Projects',
+ data: [amount, 19-amount, 19],
+ backgroundColor: [
+ '#e3f7ba',
+ 'rgb(252, 241, 175)',
+ '#FFECE9'
+ ],
+ hoverOffset: 4
+ }]
+ },
+ };
+
+const repoChart = new Chart(ctx, config);
+}
\ No newline at end of file
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..cff0dda8 100644
--- a/code/index.html
+++ b/code/index.html
@@ -4,18 +4,40 @@
-