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