diff --git a/README.md b/README.md
index 1613a3b0..b9dc5ed4 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,10 @@
# 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.
+This is about tracking my Github projects from Technigo using Github's API to fetch data.
## 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?
+My CSS could have been nicer and I need to deepen my knowledge about CSS.
## 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://epic-williams-e889ca.netlify.app/
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..ce50f23d 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -2,3 +2,33 @@
const ctx = document.getElementById('chart').getContext('2d')
//"Draw" the chart here 👇
+//console.log('hey from chart')
+
+
+
+
+ // const myChart = new Chart(document.getElementById('myChart'),config);
+ //amount of repos
+ const drawChart =(amount) =>{
+
+ const config = {
+ type: 'doughnut',
+ data:
+ { labels: [
+ 'Finished Projects',
+ 'Projects Left',
+
+ ],
+ datasets: [{
+ label: 'Technigo projects',
+ //data: [300, 50, 100], //[5,20-5] 1st:length of repoarray, 2nd: all projects need to do + length ofRepoArray
+ data: [amount,19-amount],
+ backgroundColor: [
+ '#CEE5D0', 'rgb(46, 12, 124);'
+ ],
+ hoverOffset: 4
+ }]
+ },
+};
+const myChart = new Chart(ctx,config);
+}
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..f35576bf 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,21 +1,43 @@
+
Project GitHub Tracker
+
+
+
+
+
-
GitHub Tracker
-
Projects:
-
+
+
+
GitHub Tracker
+
+
+
+
+
+
for the Technigo Projects
+
+
-
+
+
Overview of projects
+
+
-
+
+
+
\ No newline at end of file
diff --git a/code/pngkey.com-github-icon-png-1787508.png b/code/pngkey.com-github-icon-png-1787508.png
new file mode 100644
index 00000000..10737d47
Binary files /dev/null and b/code/pngkey.com-github-icon-png-1787508.png differ
diff --git a/code/script.js b/code/script.js
index e69de29b..73321976 100644
--- a/code/script.js
+++ b/code/script.js
@@ -0,0 +1,143 @@
+
+
+const personalInfo = document.getElementById('personalInfo');
+const projectsContainer=document.getElementById('projects');
+const USER='jessicatf';
+const USER_URL = `https://api.github.com/users/${USER}`;
+const REPOS_URL = `https://api.github.com/users/${USER}/repos`;
+
+
+
+//User data
+
+const getUserData = () => {
+ fetch(USER_URL)
+ .then((response) => response.json())
+ .then((data) => {
+ personalInfo.innerHTML = `
+