diff --git a/README.md b/README.md
index 1613a3b0..06f6eb13 100644
--- a/README.md
+++ b/README.md
@@ -2,12 +2,18 @@
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.
+We were tasked to create a Github Tracker where we can see and are able to access all of our github repos from Technigo.
## The problem
+I approached problems by using google/stackoverflow and asking friends, I didn't have much of a plan going in, I kind of wanted to make it as simple as possible.
+
+I had a very unfortunate week and therefore it is turned in alittle late, Basically started coding on friday and forgot to send it in on sunday as I went to bed early, I am also not finished with the project for some reason my image refuse to show up so that will be something I need to look into. I believe I did fine for the timeframe I had as I was both sick and had to go out of town and didn't have time to code then which so the only thing I would change is that I would like to go back to regular where I wont be sick and wont be out of town without a computer.
+
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?
## View it live
+https://determined-bose-382814.netlify.app
+
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.
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..8b71cde4 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -2,3 +2,27 @@
const ctx = document.getElementById('chart').getContext('2d')
//"Draw" the chart here 👇
+const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Projects Done',
+ 'Projects Left',
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [6, 20-5],
+ backgroundColor: [
+ ' rgb(255,250,250)',
+ 'rgb(23, 18, 18)',
+
+ ],
+ hoverOffset: 4
+ }]
+ },
+ };
+
+
+
+const myChart = new Chart(ctx, config)
+
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..8125aa71 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,21 +1,39 @@
+