| <html lang="en" dir="rtl"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>CodeCraft Playground</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <style> | |
| .editor { | |
| height: 70vh; | |
| } | |
| .output { | |
| height: 25vh; | |
| } | |
| .code-tab { | |
| transition: all 0.3s ease; | |
| } | |
| .code-tab.active { | |
| background-color: #3b82f6; | |
| color: white; | |
| } | |
| .run-btn { | |
| transition: all 0.2s ease; | |
| } | |
| .run-btn:hover { | |
| transform: scale(1.05); | |
| } | |
| .run-btn:active { | |
| transform: scale(0.95); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100 font-sans"> | |
| <header class="bg-indigo-600 text-white shadow-lg"> | |
| <div class="container mx-auto px-4 py-6"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-2"> | |
| <i data-feather="code" class="w-8 h-8"></i | |
| </body> | |
| </html> |