We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f6828f commit b52d229Copy full SHA for b52d229
1 file changed
Sprint-3/reading-list/script.js
@@ -28,7 +28,9 @@ const ulListEl = document.getElementById("reading-list");
28
const li = document.createElement("li");
29
ulListEl.appendChild(li);
30
li.textContent ="placeholder text";
31
-
+const img = document.createElement('img');
32
+li.appendChild(img)
33
+img.src = "https://blackwells.co.uk/jacket/l/9780135957059.jpg";
34
35
}
36
readingList(books);
0 commit comments