Dream Women's Clothing Store
About this app
Explore our dreamy collection of women’s clothing! Transform your wardrobe with the latest trends and styles, perfect for all occasions.
Dream Women's Clothing Store Dream Women's Clothing © 2023 Dream Clothing. All rights reserved.
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Dream Women's Clothing Store</title>
<meta name="description" content="Explore our dreamy collection of women’s clothing! Transform your wardrobe with the latest trends and styles, perfect for all occasions.">
<meta name="keywords" content="women's clothing, fashion, online shopping, trendy outfits, dream clothing, stylish apparel">
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">
<script type="text/javascript">
try {
// App Javascript Goes Here
document.addEventListener("DOMContentLoaded", function() {
// Sample clothing data
const clothesData = [
{ id: 1, name: "Flowy Summer Dress", price: 49.99, image: "https://via.placeholder.com/200x300?text=Summer+Ddress" },
{ id: 2, name: "Chic Blouse", price: 29.99, image: "https://via.placeholder.com/200x300?text=Chic+Blouse" },
{ id: 3, name: "Stylish Ripped Jeans", price: 39.99, image: "https://via.placeholder.com/200x300?text=Ripped+Jeans" }
];
function renderClothes() {
const container = document.getElementById('clothes-container');
clothesData.forEach(clothing => {
const card = document.createElement('div');
card.classList.add('col-md-4', 'text-center', 'mb-4');
card.innerHTML = `
<div class="card shadow-lg">
<img src="${clothing.image}" class="card-img-top" alt="${clothing.name}">
<div class="card-body">
<h5 class="card-title">${clothing.name}</h5>
<p class="card-text">$${clothing.price.toFixed(2)}</p>
<button class="btn btn-primary" onclick="addToCart(${clothing.id})">Add to Cart</button>
</div>
</div>
`;
container.appendChild(card);
});
}
window.addToCart = function(id) {
const clothing = clothesData.find(c => c.id === id);
alert(`${clothing.name} has been added to your cart!`);
}
renderClothes();
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(to right, #ffcf6e, #ff6f91);
font-family: 'Arial', sans-serif;
color: #333;
}
#main-container {
padding: 30px;
border-radius: 15px;
background-color: white;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
margin-top: 20px;
animation: fade-in 1s ease;
}
h1 {
text-align: center;
margin-bottom: 20px;
font-size: 2.5rem;
}
.card {
transition: transform 0.2s;
}
.card:hover {
transform: scale(1.05);
}
footer {
text-align: center;
margin-top: 30px;
padding: 10px;
font-weight: bold;
background-color: #f1f1f1;
border-radius: 10px;
}
@keyframes fade-in {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Dream Women's Clothing</h1>
<div id="clothes-container" class="row"></div>
<footer>© 2023 Dream Clothing. All rights reserved.</footer>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!