seg/trabalho5/forbidden.html

58 lines
1.2 KiB
HTML
Raw Normal View History

2023-12-06 20:00:05 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Forbidden</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f1f1f1;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center;
}
h1 {
color: #333;
font-size: 24px;
margin-bottom: 10px;
}
p {
color: #666;
font-size: 16px;
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #333;
color: #fff;
text-decoration: none;
border-radius: 3px;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #555;
}
</style>
</head>
<body>
<div class="container">
<h1>403 Forbidden</h1>
<p>Access to the requested resource is forbidden.</p>
<p>Contact support.</p>
</div>
</body>
</html>