Created
August 30, 2022 23:20
-
-
Save 0x4a/1483a2ac11c84dd3ba59b722a772e7b2 to your computer and use it in GitHub Desktop.
Revisions
-
0x4a created this gist
Aug 30, 2022 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,49 @@ <!DOCTYPE html> <html lang="de" > <head> <meta charset="UTF-8"> <title>404 NOT FOUND</title> <link rel="stylesheet" href="style.css"> <style> @import url(https://fonts.googleapis.com/css?family=Asap&display=swap); html, body { height: 100%; width: 100%; margin: 0; padding: 0; background: #555; font-family:'Asap', sans-serif; overflow: hidden; } .center { height: 400px; width: 500px; position: absolute; top: calc(50% - 200px); left: calc(50% - 250px); text-align: center; } h1, p { margin: 0; padding: 0; } h1 { font-size: 16rem; color: #99CC33; } p { font-size: 2rem; color: #FF9900; } </style> </head> <body> <div class="center"> <h1>404</h1> <p>NOT FOUND.</p> </div> </body> </html>