Question: HTML: Summer Reading List Bill Gates: Summer 2016 Reading List CSS: body { background-color: black; } .container { background-color: black; border: 10px dashed #4b2e83; width:

HTML:
CSS:
body {
background-color: black;
}
.container {
background-color: black;
border: 10px dashed #4b2e83;
width: 560px;
}
.panel {
margin: 20px auto;
width: 500px;
}
.panel-title {
text-align: center;
}
#even {
background-color: white;
color: black;
}
#odd {
background-color: lightgray;
color: black;
}
JS:
$(document).ready(function () {
// --------- jQuery Data Section ---------
var book1 = {
title: "Seveneves",
author: "Neal Stephenson"
};
var book2 = {
title: "How Not to be Wrong",
author: "Jordan Ellenberg"
};
var book3 = {
title: "The Vital Question",
author: "Nick Lane"
};
var book4 = {
title: "The Power to Compete",
author: "Ryoichi Mikitani and Hiroshi Mikitani"
};
var book5 = {
title: "Sapiens: A Brief History of Humankind",
author: "Noah Yaval Harai"
};
var books = new Array;
books.push(book1);
books.push(book2);
books.push(book3);
books.push(book4);
books.push(book5);
var img_ref = {
url: 'http://www.gannett-cdn.com/-mm-/dcc982e8ed28edbe24141c93759ed7448c9e2642/c=58-0-965-682&r=x404&c=534x401/local/-/media/2016/05/20/USATODAY/USATODAY/635993645233133294-EPA-USA-WORLD-BANK-IMF-SPRING-MEETINGS-81292935.JPG',
src: 'http://bit.ly/1RiIMVl',
alt: 'Bill Gates',
height: 100, // orig 401 by 4:1
width: 133 // orig 534 by 4:1
};
var reference = {
url: 'http://www.usatoday.com/story/money/markets/2016/05/20/bill-gates-read-these-5-books-summer/84675556/',
src: 'http://usat.ly/20hirO3',
alt: 'Gates Books',
text: 'BG:5 Books for Summer 2016'
}
// --------- jQuery Data Section ---------
// --------- jQuery Code Section ---------
// apply bootstrap panel classes
$('ol').addClass("list-group");
$('li').addClass("list-group-item");
$('li').each(function (i) {
this.innerText = // your code to pull values from the array of objects here
});
$('li').each(function (i) {
// add your row striping code here
});
// --------- jQuery Code Section ---------
});
booklist.html booklist.css booklist.js Using the provided html, css and js code snippets (downloaded from Canvas files), add methods to import the data from the js file into the web page along with requested styling in comments from the booklist.js file 17bStep by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
