Project Link: https://codepen.io/tchbell/full/vZxVrK/
Feedback is appreciated. Thank you
On a wide screen (pc) it looks like:
Very difficult to read the text, because it is too close to the same color as the background color.
So a few issues I had -
You got the hardest part of the problem down though - sifting through an array and playing with the data. You might want to break the array up into two arrays, one for quotes and the other for authors. Another option would be to break the array up into a bunch of Objects, like so.
var quotes = [
{
quote: "Blimey, that's an owl!",
author: "Harry Potter"
},
{
quote: "Dobby, noooooo!",
author: "Hermione Granger"
}...
]
Both techniques can help with the last bullet point I mentioned above. An array of Objects also prepares you for working with APIs, since APIs are written in JSON and Object notation is very similar.