Postingan

Menampilkan postingan dari Oktober, 2025

Game Matematika

 <!DOCTYPE html> <html lang="id"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Permainan Perkalian</title>     <!-- Memuat Tailwind CSS -->     <script src="https://cdn.tailwindcss.com"></script>     <style>         /* Mengatur font Inter */         :root {             font-family: 'Inter', sans-serif;         }         /* Custom CSS untuk Animasi */         @keyframes correct-pop {             0% { transform: scale(0.5); opacity: 0; }             50% { transform: scale(1.5); opacity: 1; }             100% { transform: scale(1); opacity: 0; }       ...