File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -26,13 +26,18 @@ const books = [
26
26
{
27
27
title: ' The Design of Everyday Things' ,
28
28
author: ' Don Norman' ,
29
- alreadyRead: false ,
29
+ alreadyRead: false
30
30
},
31
31
{
32
32
title: ' The Most Human Human' ,
33
33
author: ' Brian Christian' ,
34
- alreadyRead: true ,
34
+ alreadyRead: true
35
35
},
36
+ {
37
+ title: ' The Pragmatic Programmer' ,
38
+ author: ' Andrew Hunt' ,
39
+ alreadyRead: true
40
+ }
36
41
];
37
42
```
38
43
@@ -42,6 +47,9 @@ const books = [
42
47
4 . Add an ` <img> ` to each book that links to a URL of the book cover.
43
48
5 . Change the style of the book depending on whether you have read it (green) or not (red).
44
49
50
+ The end result should look something like this:
51
+ https://hyf-js2-week1-makeme-ex1-demo.herokuapp.com/
52
+
45
53
** Exercise 2: About me**
46
54
47
55
Start with this HTML and save it as "about_me.html":
You can’t perform that action at this time.
0 commit comments