diff --git a/README.md b/README.md
index 1613a3b0..7b62fff8 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,23 @@
# GitHub Tracker
-Replace this readme with your own information about your project.
+I used an API to get hold on my information on github. A sorted out the infomation I wanted to have on my page. After that did I style the page.
+I used a chart for the first time.
+
+
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
## 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?
+I had som problems wiht the js, that I could't se my fetches in the browser, my team mate helped me, I had mist the letter s in two places, had been wrightng commit instead om commits, and it was some more of this small but very importet thigs I had missed.
-## View it live
+I had som problems as well then I did the css, I was trying to style the wrong class ones. And I got help form team mates here as well. I have goolged a lot.
+
+I thougt it was messy to have classes in html and js.
-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.
+It was a struggle to get the chart on the right place, and the border around the chart to stay as a circel.
+
+If I had more time would I made "Link to repository" in to a button.
+
+
+## View it live
+https://lovisasgithubtracker.netlify.app/
diff --git a/code/.gitignore b/code/.gitignore
new file mode 100644
index 00000000..07dda7ed
--- /dev/null
+++ b/code/.gitignore
@@ -0,0 +1,2 @@
+token.js
+
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..8dbfa1e9 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,28 @@
//DOM-selector for the canvas 👇
-const ctx = document.getElementById('chart').getContext('2d')
+const ctx = document.getElementById('myChart').getContext('2d')
+Chart.defaults.font.family = 'Roboto Mono, monospace';
+
//"Draw" the chart here 👇
+
+
+
+const drawChart = (numberOfProjects) => {
+ const config = {
+ type: "pie",
+ data: {
+ labels: ["Project done", "Project left"],
+ datasets:[{
+ label: "Technigo Projects",
+ data: [numberOfProjects, 19 - numberOfProjects],
+ backgroundColor:["rgb(0,0,250)", "rgb(27,27,119)"],
+ hoverOffset: 4,
+
+ }]
+
+ }
+ }
+
+ const myChart = new Chart(ctx, config);
+
+}
diff --git a/code/github-cat.png b/code/github-cat.png
new file mode 100644
index 00000000..9490ffc6
Binary files /dev/null and b/code/github-cat.png differ
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..91cbc15e 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,21 +1,44 @@
-