-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (22 loc) · 891 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Script Maker | Initial Page</title>
<link rel="stylesheet" href="./styles/style.css">
<script src="./scripts/darkmode.js"></script>
</head>
<body class="center">
<button class="themeChangeBtn"><i class="fa-solid fa-circle-half-stroke"></i></button>
<h1 class="text-center">Script Maker | Initial Page</h1>
<p>Please Wait we redirecting you....</p>
<script>
if (window.location.href.includes("index.html")) {
window.location.href = window.location.href.replace("index.html", "mobile-homepage.html");
} else {
window.location.href += "mobile-homepage.html";
}
</script>
</body>
</html>