Home

body {
font-family: Arial, sans-serif;
margin: 20px;
}
.form-container {
margin-bottom: 20px;
}
input[type=”text”] {
padding: 10px;
width: 300px;
margin-right: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type=”submit”] {
padding: 10px 15px;
border: none;
background-color: #28a745;
color: white;
border-radius: 5px;
cursor: pointer;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background-color: #f8f9fa;
padding: 10px;
margin-bottom: 5px;
border-radius: 5px;
}
































Product List

    // লিঙ্ক লিস্ট যোগ করার জন্য
    const form = document.getElementById(‘linkForm’);
    const productList = document.getElementById(‘productList’);


    form.addEventListener(‘submit’, function(event) {
    event.preventDefault();

    const productLink = document.getElementById(‘productLink’).value;
    if (productLink.trim() !== “”) {
    const li = document.createElement(‘li’);
    li.innerHTML = `${productLink}`;
    productList.appendChild(li);
    document.getElementById(‘productLink’).value = “”; // ইনপুট ফিল্ড খালি করা
    }
    });

    Design a site like this with WordPress.com
    Get started