`;
insertFooterInBody();
function insertFooterInBody() {
const mbcBody = document.body;
// insert the code
mbcFooter.innerHTML = mbcFooterContent;
mbcBody.appendChild(mbcFooter);
// set the current year for copyright
document.getElementById('thisyear').appendChild(document.createTextNode(new Date().getFullYear()))
}