test

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Styled Groups</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f9f9f9;
}
.group {
margin-bottom: 20px;
padding: 15px;
border: 1px solid #ccc;
background: #fff;
border-radius: 5px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.group-name {
font-size: 18px;
font-weight: bold;
color: #333;
}
.description {
font-size: 14px;
color: #666;
margin-bottom: 10px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f4f4f4;
font-weight: bold;
}
</style>
</head>
<body>

<div class=”group”>
<div class=”group-name”>Group Name: Group 1</div>
<div class=”description”>Description: blablabla</div>
<table>
<tr>
<th>Name</th>
<th>Link</th>
</tr>
<tr>
<td>abc</td>
<td><a href=”somelink”>somelink</a></td>
</tr>
</table>
</div>

<div class=”group”>
<div class=”group-name”>Group Name: Group 1</div>
<div class=”description”>Description: blablabla</div>
<table>
<tr>
<th>Name</th>
<th>Link</th>
</tr>
<tr>
<td>abc</td>
<td><a href=”somelink”>somelink</a></td>
</tr>
</table>
</div>

</body>
</html>