easy
+10 XP
FRONTEND

Responsive Card Grid

Build a card grid: 1 col mobile, 2 col tablet, 3 col desktop.
You're exploring as a guest. Create a free account to save progress and submit solutions.
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <link rel="stylesheet" href="/styles.css" />
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
  <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
  <!-- Cards here -->
</div>
  <script src="/index.js"></script>
</body>
</html>