├── .htaccess ├── LICENSE ├── README.md └── index.html /.htaccess: -------------------------------------------------------------------------------- 1 | ErrorDocument 404 /404.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Torusaynim 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Evangelion-404th-Impact 2 | Simple Evangelion themed "404 Not Found" page, you can try it [**here**](https://torusaynim.github.io/Evangelion-404th-Impact/) 3 | 4 | ## Features 5 | 6 | - Design inspired by title cards from original ***Neon Genesis Evangelion*** series 7 | - Clickable last line to return you back to homepage 8 | - Design is adapted for different types of devices with different screen size 9 | 10 | ## How to set it up 11 | 12 | 1. Download the code and rename the page to something different, **404.html** for example 13 | 2. Put this page wherever you like in your server directory 14 | 3. Create **.htaccess** in the root directory of your server (if you don't have it) and then edit it by adding the following line `ErrorDocument 404 /404.html` where everything after `/` is the full path to your custom 404 page inside server directory 15 | 4. Save everything and try to open a page that doesn't exist to test it 16 | 5. You're done, enjoy your custom 404 page! 17 | 18 | ## Special thanks 19 | 20 | [![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=egoist&repo=evangelion-card&theme=graywhite)](https://github.com/egoist/evangelion-card) 21 | [![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=khaledkzy&repo=pixel-vh-vw-converter&theme=graywhite)](https://github.com/khaledkzy/pixel-vh-vw-converter) 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | The End of the Internet 7 | 62 | 63 | 64 |
65 |
oops
66 |
something
67 |
went wrong
68 |
error:404
69 | 70 |
take me back
71 |
72 | 73 | 74 | --------------------------------------------------------------------------------