26 lines
716 B
HTML
26 lines
716 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="refresh" content="0; url=descargar-curso/descargas/LIBRO_DE_ESTUDIO.html">
|
|
<title>Redirigiendo a KSALDIS-DT...</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #fdfdfd;
|
|
color: #333;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Redirigiendo al Dashboard del curso...</p>
|
|
<script>
|
|
window.location.replace("descargar-curso/descargas/LIBRO_DE_ESTUDIO.html");
|
|
</script>
|
|
</body>
|
|
</html>
|