Project - 7

Project 7: Memory Match Game

Build a classic memory match (concentration) game. Flip cards to find matching pairs. Include a move counter and win condition.

✦ HTML + CSS + JS Editor
▶ Live Output

👀 Show Example Solution
<div class="grid" id="game"></div>
<p>Moves: <span id="moves">0</span></p>

<script>
  // Memory match logic with card flipping and matching
</script>