Skip to content

Commit

Permalink
404.html
Browse files Browse the repository at this point in the history
  • Loading branch information
hattifnatt4r committed Jun 10, 2024
1 parent e60a745 commit fd7c832
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
18 changes: 18 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page Not Found</title>
<script type="text/javascript">
// var redirectUrl = "index.html";
var redirectUrl = "program.pdf";
setTimeout(function() {
window.location.href = redirectUrl;
}, 0);
</script>
</head>
<body>
<p>Page Not Found</p>
<p>You will be redirected shortly.</p>
</body>
</html>
16 changes: 16 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SD Course</title>
<script type="text/javascript">
var redirectUrl = "program.pdf";
setTimeout(function() {
window.location.href = redirectUrl;
}, 0);
</script>
</head>
<body>

</body>
</html>

0 comments on commit fd7c832

Please sign in to comment.