Code
Master
Pen
الرئيسية
الكورسات
لوحة التحكم
تشغيل
حفظ
HTML
1
👋 مرحباً بك في CodeMaster!
هذا هو معاينة مباشرة لكودك
انقر هنا
CSS
1
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, sans-serif; background: linear-gradient(135deg, #1A1A2E, #16213E); min-height: 100vh; display: flex; align-items: center; justify-content: center; direction: rtl; } .container { text-align: center; padding: 40px; color: white; max-width: 600px; } h1 { font-size: 36px; margin-bottom: 15px; background: linear-gradient(135deg, #6C63FF, #00D2FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } p { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 18px; } button { padding: 12px 30px; background: linear-gradient(135deg, #6C63FF, #00D2FF); color: white; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 15px rgba(108,99,255,0.3); } button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(108,99,255,0.4); } #msg { margin-top: 20px; font-size: 20px; color: #00D2FF; }
JS
1
function showMessage() { const messages = [ '🌟 مرحباً بك في عالم البرمجة!', '💻 CodeMaster هو أفضل مكان للتعلم!', '🚀 استمر في التعلم والتطور!', '🎯 أنت في الطريق الصحيح!' ]; const randomIndex = Math.floor(Math.random() * messages.length); document.getElementById('msg').textContent = messages[randomIndex]; console.log(messages[randomIndex]); }
النتيجة
جاهز
مباشر
HTML/CSS/JS
0 حرف
💾 حفظ المشروع
اسم المشروع
إلغاء
حفظ