Fetch Details from JavaScript object

by Pranab Dey

CSS

.box{
	background: skyblue; padding: 10px 20px; display: inline-block; margin: 5px; margin-right: 0; margin-bottom:0;
	border-radius: 5px;
}
h3,h2{
	display: inline-block; margin: 5px auto;
}

JavaScript

var js = [{
  "text": "La domestica me espiaba",
  "src": "https://img-hw.xvideos.com/videos/thumbs169ll/0f/38/65/0f38658ae15e196dbb0db9e352b7ce57/0f38658ae15e196dbb0db9e352b7ce57.5.jpg",
  "href": "https://www.xvideos.com/video24960295/0/teen_bbw_christy_ball-gagged_and_tied"
}, {
  "text": "teen BBW Christy ball-gagged and tied",
  "src": "https://img-hw.xvideos.com/videos/thumbs169ll/ab/0f/08/ab0f084e15d5914bfad7ebe08fa75c6b/ab0f084e15d5914bfad7ebe08fa75c6b.1.jpg",
  "href": "https://www.xvideos.com/video26518401/0/sexy_amateur_teen_gets_fucked_good"
}, {
  "text": "Sexy Amateur Teen Gets Fucked Good",
  "src": "https://img-hw.xvideos.com/videos/thumbs169ll/ba/68/83/ba6883bff23ab265b75d563c37cf8f95/ba6883bff23ab265b75d563c37cf8f95.21.jpg",
  "href": "https://www.xvideos.com/video26348941/0/la_domestica_me_espiaba"
}, {
  "text": "Lesbian sex into erotic threesome",
  "src": "https://img-hw.xvideos.com/videos/thumbs169ll/66/4f/a5/664fa5b274498430d768acda4b5b462d/664fa5b274498430d768acda4b5b462d.12.jpg",
  "href": "https://www.xvideos.com/video15541901/0/20151028_214919"
}];

for(var i=0;i<=js.length-1;i++){
var box = document.createElement("div");
box.setAttribute("class","box");

box.innerHTML = "<a href='" + js[i].href + "' target='_blank'><img src='" + js[i].src + "'/></a><h2>" + js[i].text + "</h2>" + "<br> <h3>link :</h3><a href='" + js[i].href + "' target='_blank'>See Video Here</a>";

document.body.append(box);
}