Skip to content

Commit

Permalink
new version of website in new repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Intellimixiopce committed Jul 30, 2022
1 parent 89b3185 commit e4dc6a2
Show file tree
Hide file tree
Showing 122 changed files with 105,139 additions and 0 deletions.
1 change: 1 addition & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ErrorDocument 404 /404.html
80 changes: 80 additions & 0 deletions 404.html
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>
Loading

0 comments on commit e4dc6a2

Please sign in to comment.