/* test */
// Create a new section element
let newSection = document.createElement("section");
// Add a class for styling
newSection.classList.add("new-section");
// Append the section to the body if it has class 'index'
let bodyElement = document.querySelector("body.index");
if (bodyElement) {
bodyElement.appendChild(newSection);
} else {
console.error("No body element with class 'index' found.");
}
// Apply background image using inline CSS
newSection.style.backgroundImage = "url('https://cdn.salla.sa/form-builder/a4c7sf3tjohbuLgRtSJ8sqhLOlrZ9ipjAk614i61.webp')";
newSection.style.backgroundSize = "cover"; // Ensures the image covers the section
newSection.style.backgroundPosition = "center"; // Centers the background
newSection.style.width = "100%"; // Full width
newSection.style.height = "300px"; // Adjust the height as needed
/*اختبار*/
>