<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Sorry, the page you were looking for doesn't exist. (404)</title> <style type="text/css"> body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; height: 100vh; box-sizing: border-box; margin: 0; font-size: 14px; } .container { box-sizing: border-box; padding: 32px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; } .top-bar { display: flex; justify-content: space-between; } .dribbble-logo { width: 80px; } .social-link { text-decoration: none; } .social-icon { width: 16px; margin-left: 20px; } .content-container { display: flex; flex-direction: column; align-items: center; margin: 48px 0; text-align: center; } h1 { color: #0d0c22; max-width: 470px; font-size: 20px; } .subheading { color: #6e6d7a; } .extra-text { color: #3d3d4e; } .link { color: #ea4c89; } .bottom-bar { display: flex; justify-content: space-between; align-items: center; } .error-code { background: #f3f3f4; color: #6e6d7a; font-size: 11px; padding: 6px; font-weight: bold; border-radius: 4px; } .art-credit { color: #6e6d7a; font-size: 12px; } .main-image { width: 100%; max-width: 600px; } @media (min-width: 768px) { h1 { font-size: 32px; } body { font-size: 16px; } } </style> </head> <body> <div class="container"> <div class="top-bar"> <a href="https://dribbble.com/"> <img src="https://dribbble.com/images/dribbble-logo.png" alt="Dribbble logo" class="dribbble-logo" /> </a> <div> <a href="https://www.facebook.com/dribbble" class="social-link"> <img src="https://dribbble.com/images/facebook-logo.png" alt="Facebook" class="social-icon" /> </a> <a href="https://www.instagram.com/dribbble" class="social-link"> <img src="https://dribbble.com/images/instagram-logo.png" alt="Instagram" class="social-icon" /> </a> <a href="https://www.twitter.com/dribbble" class="social-link"> <img src="https://dribbble.com/images/twitter-logo.png" alt="Twitter" class="social-icon" /> </a> </div> </div> <div class="content-container"> <h1>Whoops, that page is gone.</h1> <div class="subheading">We apologize for any inconvenience this may have caused.</div> <img src="https://dribbble.com/images/technical-foul.png" alt="Technical foul" class="main-image" /> <div class="extra-text"> You can try <a href="https://dribbble.com" class="link">dribbble.com</a> again, or <a href="https://dribbble.com/contact" class="link">contact us</a> about a problem. </div> </div> <div class="bottom-bar"> <div class="error-code">404</div> <div class="art-credit">Art by Luiza Tagliatela</div> </div> </div> <script> (function() { if (!document.referrer) { return; } var domain = document.referrer.split("//")[1] if (!domain) { return; } domain = domain.toString().split("/")[0]; var element = document.getElementById("url"); element.href = document.referrer; element.innerText = domain; })(); </script> </body> </html>