Skip to content

Instantly share code, notes, and snippets.

@user0able
Created September 24, 2021 15:37
Show Gist options
  • Save user0able/03807b0a4550aa311d2864eae40a43af to your computer and use it in GitHub Desktop.
Save user0able/03807b0a4550aa311d2864eae40a43af to your computer and use it in GitHub Desktop.
NoDisponible
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Lo sentimos, esta página no se encuentra disponible</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet">
</head>
<style>
* {
margin: 0 !important;
padding: 0 !important;
font-family: 'Roboto', sans-serif;
}
body {
background-color: black;
color: white;
line-height: 2.3em;
}
.center {
height: 98vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.centered {
text-align: center;
max-width: 90%;
width: 50%;
margin: 0 auto;
}
p {
text-align: center;
font-size: 2em;
}
</style>
<body>
<div class="center center-vertical">
<div class="centered">
<p>Lo sentimos,</p>
<p>Pero este sitio web no se encuentra disponible</p>
</div>
</div>
</body>
</html>
@user0able
Copy link
Author

a

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment