File size: 950 Bytes
7b14154 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
<!DOCTYPE html>
<html>
<head>
<title>Error Page</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
font-size: 16px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 50px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
text-align: center;
}
h1 {
font-size: 48px;
color: #c00;
margin-top: 0;
}
p {
font-size: 24px;
color: #333;
margin-bottom: 30px;
}
button {
background-color: #c00;
color: #fff;
padding: 15px 30px;
border: none;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #900;
}
</style>
</head>
<body>
<div class="container">
<h1>Sorry for inconvinience</h1>
<p>Solving some minor issues</p>
<button onclick="window.history.back()">Okay</button>
</div>
</body>
</html>
|