Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5ac1347

Browse files
committed
week1-makeme-ex1 demo app
1 parent d007eb2 commit 5ac1347

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Week1/MAKEME.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,18 @@ const books = [
2626
{
2727
title: 'The Design of Everyday Things',
2828
author: 'Don Norman',
29-
alreadyRead: false,
29+
alreadyRead: false
3030
},
3131
{
3232
title: 'The Most Human Human',
3333
author: 'Brian Christian',
34-
alreadyRead: true,
34+
alreadyRead: true
3535
},
36+
{
37+
title: 'The Pragmatic Programmer',
38+
author: 'Andrew Hunt',
39+
alreadyRead: true
40+
}
3641
];
3742
```
3843

@@ -42,6 +47,9 @@ const books = [
4247
4. Add an `<img>` to each book that links to a URL of the book cover.
4348
5. Change the style of the book depending on whether you have read it (green) or not (red).
4449

50+
The end result should look something like this:
51+
https://hyf-js2-week1-makeme-ex1-demo.herokuapp.com/
52+
4553
**Exercise 2: About me**
4654

4755
Start with this HTML and save it as "about_me.html":

0 commit comments

Comments
 (0)