Files
http-server-in-c/public/403.html

34 lines
728 B
HTML

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#root {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 3rem;
}
p {
font-size: 1.5rem;
}
a {
font-size: 1.5rem;
}
</style>
</head>
<body>
<div id="root">
<h1>Error 403: Forbidden</h1>
</div>
</body>