الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> </head> <body> <h2>Javascript In The Body</h2> <p id="demo">My color will be changed to red if the script is executed.</p> <script> document.getElementById('demo').style.color = 'red'; </script> </body> </html>