main
Thomas 2 years ago
parent db62466083
commit 2ccdd0f623

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="custom-error-container">
<h1 class="error-title">404</h1>
<h2 class="error-subtitle">Page Not Found</h2>
<p class="error-message">Oops! It seems like the page you're looking for doesn't exist.</p>
<a class="error-button" href="/">Go back home</a>
</div>
</body>
</html>

@ -1,2 +1,2 @@
# simswebsite
# simswebsite -- www.simssoftware.in

@ -1,6 +0,0 @@
Thanks for downloading this template!
Template Name: Multi
Template URL: https://bootstrapmade.com/multi-responsive-bootstrap-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/

@ -1468,4 +1468,50 @@ section {
.back-button {
display: none;
}
}
/* -------error------------ */
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
}
.custom-error-container {
margin: 120px 120px;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.error-title {
font-size: 80px;
font-weight: 700;
color: #000000;
}
.error-subtitle {
font-size: 30px;
margin-bottom: 20px;
}
.error-message {
font-size: 18px;
margin-bottom: 20px;
}
.error-button {
display: inline-block;
padding: 10px 20px;
background-color: #007bff;
color: #fff;
text-decoration: none;
border-radius: 3px;
}
.error-button:hover {
background-color: #005cbf; /* Change the hover background color to a darker blue */
color: #fff; /* Keep the text color white */
}
Loading…
Cancel
Save