Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Week1/MAKEME.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,18 @@ const books = [
{
title: 'The Design of Everyday Things',
author: 'Don Norman',
alreadyRead: false,
alreadyRead: false
},
{
title: 'The Most Human Human',
author: 'Brian Christian',
alreadyRead: true,
alreadyRead: true
},
{
title: 'The Pragmatic Programmer',
author: 'Andrew Hunt',
alreadyRead: true
}
];
```

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

The end result should look something like this:
https://hyf-js2-week1-makeme-ex1-demo.herokuapp.com/

**Exercise 2: About me**

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