Free friday assigment 3/20/26

I made website for shop

here you can se the code

My Cool Shop

🔥 My Cool Shop 🔥

🛒 Cart: 0
Shoes

Shoes

$25.00

Jacket

Jacket

$40.00

Black Hat

Black Hat

$15.00

here style

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #1e1e2f, #3a3a5c);
    color: white;
}


header {
    background: rgba(0, 0, 0, 0.6);
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 20px #ff8800;
    position: sticky;
    top: 0;
}

header h1 {
    margin: 0;
    font-size: 40px;
    letter-spacing: 2px;
}


.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
}

.product {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    width: 230px;
    text-align: center;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}


.product:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px #ffffff;
}


.product img {
    width: 100%;
    border-radius: 10px;
}


button {
    background: #ff8800;
    color: black;
    border: none;
    padding: 12px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #ffaa33;
    transform: scale(1.1);
}

here java

let cartCount = 0;

function addToCart() {
    cartCount++;
    document.getElementById("cart-count").textContent = cartCount;
}

main how its look like

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top