58 lines
1.8 KiB
HTML
58 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- This is the core of the redirect. -->
|
|
<!-- content="0; ..." means redirect after 0 seconds. -->
|
|
<!-- url=./docs/ is the destination. Using a relative path is common. -->
|
|
<meta http-equiv="refresh" content="0; url=./html/">
|
|
|
|
<title>Redirecting...</title>
|
|
|
|
<!-- It's good practice to include a canonical link for SEO purposes. -->
|
|
<!-- This tells search engines that the content at /docs/ is the "real" version. -->
|
|
<!-- Replace "example.com" with your actual domain. -->
|
|
<link rel="canonical" href="https://4d-star.github.io/libcomposition/html/">
|
|
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
background-color: #f0f2f5;
|
|
color: #333;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
.container {
|
|
padding: 2rem;
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Redirecting you...</h1>
|
|
<p>
|
|
<!-- This message is a fallback for browsers that might not execute the redirect. -->
|
|
If you are not redirected automatically,
|
|
<a href="./html/">please click here to proceed</a>.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|