<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WIESPL Management Grid</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
margin-bottom: 40px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
max-width: 1000px;
margin: 0 auto;
}
.profile-card {
background: #fff;
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.profile-card img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
border: 3px solid #0078D4;
}
.profile-card h2 {
margin: 10px 0 5px;
font-size: 20px;
}
.profile-card p {
margin: 0;
color: #555;
font-size: 16px;
}
</style>
</head>
<body>
<h1>WIESPL Management Team</h1>
<div class="grid-container">
<!-- Profile 1 -->
<div class="profile-card">
<img src="https://via.placeholder.com/120" alt="Sudhir Pimpale">
<h2>Sudhir Pimpale</h2>
<p>Managing Director, WIESPL</p>
</div>
<!-- Profile 2 -->
<div class="profile-card">
<img src="https://via.placeholder.com/120" alt="Deepa Pimpale">
<h2>Deepa Pimpale</h2>
<p>Managing Director, WIESPL</p>
</div>
</div>
</body>
</html>
