<!DOCTYPE html>
<html lang=“vi”>
<head>
<meta charset=“UTF-8”>
<meta name=“viewport” content=“width=device-width, initial-scale=1.0”>
<title>Dự Án – Điện Lạnh CoolTech</title>
<link href=“https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css” rel=“stylesheet”>
<style>
.product-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 20px;
}
.product-item {
width: 30%;
border: 1px solid #ddd;
border-radius: 10px;
padding: 15px;
text-align: center;
background-color: #f9f9f9;
}
.product-item img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
</style>
</head>
<body>
<div class=“container mt-4”>
<h2 class=“text-center”>Danh sách dự án Điện Lạnh CoolTech</h2>
<div class=“product-list” id=“product-list”>
</div>
</div>
<script>
document.addEventListener(“DOMContentLoaded”, function () {
let products = [
{ name: “Dự án lắp đặt máy lạnh chung cư”, image: “https://via.placeholder.com/300”, link: “#” },
{ name: “Dự án điều hòa trung tâm tòa nhà”, image: “https://via.placeholder.com/300”, link: “#” },
{ name: “Thi công hệ thống điện lạnh siêu thị”, image: “https://via.placeholder.com/300”, link: “#” },
{ name: “Lắp đặt hệ thống thông gió nhà xưởng”, image: “https://via.placeholder.com/300”, link: “#” },
{ name: “Dự án bảo trì hệ thống lạnh khách sạn”, image: “https://via.placeholder.com/300”, link: “#” }
];
let productList = document.getElementById(“product-list”);
products.forEach(product => {
let item = document.createElement(“div”);
item.classList.add(“product-item”);
item.innerHTML = `
<a href=”${product.link}” target=”_blank”>
<img src=”${product.image}” alt=”${product.name}“>
<h5>${product.name}</h5>
</a>
`;
productList.appendChild(item);
});
});
</script>
</body>
</html>