const parent = document.getElementById('app');
// Create a new element
const newElement = document.createElement('div');
// Add content or attributes to the new element
newElement.innerHTML= `
`;
newElement.className = 'custom-box';
const newsecElement = document.createElement('div');
newsecElement.innerHTML= `
`;
newsecElement.className = 'custom-sec-box';
// Append it to the parent
parent.appendChild(newElement);
parent.appendChild(newsecElement);