Created
September 24, 2021 15:37
-
-
Save user0able/03807b0a4550aa311d2864eae40a43af to your computer and use it in GitHub Desktop.
NoDisponible
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
a