Please subscribe our channel and support me.
Please like and 1 comment this video.


If you are visiting my channel for the first time then please subscribe
Go to my Youtube channel : class="simple-endpoint" dir="auto" href="https://www.youtube.com/channel/UCP43UNTq7UZD1cu_qTbmC9A"
spellcheck="false">https://www.youtube.com




Js Code





jsCopy code
var dateFormeat = function (e, c) { var vd = new Date(e); const mn = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; var vh = vd.getHours(), vdy = vd.getDate(), vm = 1 + vd.getMonth(), vy = vd.getFullYear(); if (c == true) { return `${mn[vm - 1]} ${vdy}, ${vy}`; } var date = new Date(); var ch = date.getHours(), cdy = date.getDate(), cm = 1 + date.getMonth(), cy = date.getFullYear(), month = [31, 20, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; if (vdy > cdy) { cdy = cdy + month[cm - 1]; cm = cm - 1; } if (vm > cm) { cm = cm + 12; cy = cy - 1 } var d = cdy - vdy, m = cm - vm, y = cy - vy, day; if (y) { day = y + ` year ago`; } else if (m) { day = m + ` month ago`; } else if (d) { if (d > 21) { day = `3 weeks ago`; } else if (d > 14) { day = `2 weeks ago`; } else if (d > 7) { day = `1 weeks ago`; } else { day = d + ` day ago`; } } else { day = `${ch - vh} hours ago`; } return day;}var listItem = function (data) { console.log(data); // let list = document.createElement("div"); let list = document.createElement("a"); // list.href = "https://www.youtube.com/watch?v=" + data.id; list.href = "https://ar-sourcecode.blogspot.com/yt=" + data.id; list.target = "_blank" list.classList.add("list"); list.innerHTML = `<a href="#" class="image"><img src="${data.img}"></span></a> <div class="meta"> <h3 class="title">${data.title}</span></h3> <div class="intro"> <span>${dateFormeat(data.date, true)}</span> <span>${data.view} view</span> </div> </div>`; return list;}var container = document.querySelector(".group");fetch("https://democodewithar.000webhostapp.com/v3/v3?q=yt&rg=video") .then((Response) => Response.json()) .then((data) => { container.innerHTML = ""; container.classList.add("index"); console.log(data); for (const item of data) container.append(listItem(item)); });




@ Recommendations Videos


blogger theme design : spellcheck="false">https://youtu.be/DAIJTjRzxLk


Login Form : spellcheck="false">https://youtu.be/HWbAr1XN3Lc


Forms design : spellcheck="false">https://youtu.be/M2ERkDXjEuw


Responsive CSS card : spellcheck="false">https://youtu.be/Ol9_5cYtAaw


Navigation design : spellcheck="false">https://youtu.be/LNEgZBdWPGM



Disclaimer video is for educational purpose only. Copyright Disclaimer Under Section 107 of the Copyright Act 1976,
allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and
research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational
or personal use tips the balance in favor of fair use .


Thanks..