-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (58 loc) · 2.53 KB
/
index.html
File metadata and controls
70 lines (58 loc) · 2.53 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome To Script This!</title>
<meta name="description" content="Script This is your ultimate web-based tool for managing Lua scripts and visualizing JSON data, tailored specifically for GTA 5 mod menus like Cherax and Kiddions. Simplify your scripting workflow with Script This!">
<meta name="keywords" content="Lua, JSON, GTA 5, Script Management, Mod Menus, Cherax, Modest Menu, Kiddions">
<meta name="theme-color" content="#6a0dad">
<meta property="og:title" content="Welcome To Script This!" />
<meta property="og:description" content="Script This is your ultimate web-based tool for managing Lua scripts and visualizing JSON data, tailored specifically for GTA 5 mod menus like Cherax and Kiddions. Simplify your scripting workflow with Script This!" />
<meta property="og:image" content="ScriptThisLogoMain.png" />
<meta property="og:url" content="https://scriptthis.ca" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="Script This" />
<meta property="og:locale" content="en_CA" />
<!-- Favicon using your logo -->
<link rel="icon" href="ScriptThisLogoMain.png" type="image/png">
<link rel="apple-touch-icon" href="ScriptThisLogoMain.png">
<link rel="canonical" href="https://scriptthis.ca/index.html">
<!-- Automatic redirection to Home.html -->
<meta http-equiv="refresh" content="3; url=/Home.html" />
<script>
setTimeout(function() {
window.location.href = "/Home.html";
}, 3000);
</script>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #1e1e1e;
color: #e0e0e0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.redirect-message {
text-align: center;
}
.redirect-message a {
color: #6a0dad;
text-decoration: none;
}
.redirect-message a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="redirect-message">
<p>Redirecting to the <a href="/Home.html">Home Page</a>...</p>
<p>If you are not redirected automatically, click the link above.</p>
</div>
</body>
</html>