xxxxxxxxxx
<html>
<body>
<h1>JavaScript Redirect To Page</h1>
<p>You can use the "window.location.assign" function
to move to another page.</p>
<p id="demo"></p>
<script>
// هنا قمنا بالإنتقال إلى الصفحة الرئيسية في موقع هرمش
window.location.assign('https://harmash.com');
</script>
</body>
</html>