الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h2>JavaScript document.write()</h2> <p>This function can be used to append new content at the end of the page.</p> <script> document.write('Added by JavaScript!'); </script> </body> </html>