-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89b3185
commit e4dc6a2
Showing
122 changed files
with
105,139 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ErrorDocument 404 /404.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<!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>Page not found | Intellimixio</title> | ||
<link rel="icon" type="image/x-icon" href="assets/img/favicon.png"> | ||
<link href="assets/img/favicon.png" rel="icon"> | ||
|
||
<!-- Bootstrap library --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" /> | ||
<!-- Bootstrap library --> | ||
<style> | ||
h1 { | ||
/* text-align: center; */ | ||
color: red; | ||
} | ||
|
||
p { | ||
/* text-align: center; */ | ||
color: red; | ||
font-size: large; | ||
} | ||
|
||
body { | ||
background-color: black; | ||
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif; | ||
} | ||
|
||
::-webkit-scrollbar { | ||
display: none; | ||
} | ||
|
||
div button a { | ||
text-decoration: none; | ||
color: white; | ||
font-size: large; | ||
font-weight: 200; | ||
font-family: Georgia, 'Times New Roman', Times, serif; | ||
} | ||
|
||
div button a:hover { | ||
color: rgb(255, 255, 255); | ||
|
||
} | ||
|
||
#home-btn { | ||
|
||
border-radius: 10px; | ||
margin: auto; | ||
} | ||
|
||
#home-btn:hover { | ||
border-radius: 4px; | ||
} | ||
|
||
img { | ||
width: 400px; | ||
height: 450px; | ||
margin: 17px auto; | ||
|
||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<h1 class="text-center">Please try again</h1> | ||
<p class="text-center">Sorry for inconvenience.</p> | ||
<div class="text-center"> | ||
<img src="assets/img/error.svg" alt="error page" class="img-fluid" /> | ||
<br> | ||
<button class="btn btn-danger" id="home-btn"><a href="index.html">Home</a></button> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.