စာပေနှင့် နည်းပညာ
မူလစာမျက်နှာ
Liveရုပ်သံ
ပို့စ်များ
လေ့ကျင့်ခန်း
နည်းပညာရပ်
သင်တန်းအပ်ရန်
စာရင်းများ
အွန်လိုင်းရုံး
Run Code
HTML
<h1>သင်တန်းသူ/သားများအားလုံး မင်္ဂလာပါ</h1><p>ညောင်လေးပင် သင်တန်းဌာနမှ ကြိုဆိုပါတယ်။</p><button id="greetBtn">Say Hello</button>
CSS
body { background:#f0f8ff; color:#222; font-family:Arial,sans-serif; text-align:center; padding-top:50px; } button { background:#ff6b6b; color:white; padding:10px 20px; border-radius:8px; border:none; cursor:pointer; } button:hover { background:#feca57; }
JAVASCRIPT
document.getElementById('greetBtn').addEventListener('click', function(){ alert('Hello! Welcome to you.'); });
LIVE PREVIEW (FRONTEND)