We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ded93a5 commit bd7c3fbCopy full SHA for bd7c3fb
3 files changed
code/index.html
@@ -4,7 +4,7 @@
4
<meta charset="UTF-8">
5
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7
- <title>Project GitHub Tracker</title>
+ <title>Project GitHub Tracker- Kara Howes</title>
8
<link rel="stylesheet" href="./style.css" />
9
</head>
10
<body>
code/script.js
@@ -0,0 +1,10 @@
1
+const repoURL = 'https://api.github.com/users/KaraHowes/repos'
2
+
3
+fetch(repoURL)
+.then((response)=>{
+return response.json()
+})
+.then((data)=>{
+ console.log('DATA', data)
code/style.css
@@ -1,3 +1,3 @@
body {
- background: #FFECE9;
+ background-color: aquamarine;
}
0 commit comments