الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <body> <h1>JavaScript Redirect To Page</h1> <p>You can use the "window.location.href" attribute to get page URL or to redirect to another page.</p> <p id="demo"></p> <script> // هنا قمنا بالإنتقال إلى الصفحة الرئيسية في موقع هرمش window.location.href = 'https://harmash.com'; </script> </body> </html>