D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
skdesign
/
public_html
/
Filename :
404.shtml
back
Copy
<!DOCTYPE html> <html lang="en"> <head><meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>404 Page Not Found</title> <style> *{ margin: 0; padding: 0; font-family: Calibri, sans-serif; } .container{ display: flex; align-items: center; justify-content: center; flex-direction: column; } #oops{ font-size: 20vh; margin-top: 25vh; animation-name: example; animation-duration:2s; animation-iteration-count: infinite; } #error{ margin: 1vh; font-size: 4vh; color: rgb(109, 105, 105); } @keyframes example { 0% {color: rgb(243, 45, 45);} 20% {color: rgb(175, 175, 11);} 40% {color: rgb(91, 91, 235);} 60% {color: rgb(10, 240, 10);} 80% {color: rgb(11, 180, 202);} 100% {color: rgb(207, 10, 191);} } </style> </head> <body> <div class="container"> <h2 id="oops" inert>404</h2> <h4 id="error" inert>Page Not Found</h4> </div> </body> </html>