الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h1>JavaScript Replace Page</h1> <p>You can use the "window.location.replace" function to replace the current page with another one.</p> <p id="demo"></p> <script> // هنا قمنا بتبديل الصفحة الحالية بالصفحة الرئيسية في موقع هرمش window.location.replace('https://harmash.com'); </script> </body> </html>