This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
404.html 1.18 KiB
Newer Older
Michael Breu's avatar
Michael Breu committed
<!DOCTYPE html>
<html lang="en">
Michael Breu's avatar
Michael Breu committed
  <head>
    <meta charset="utf-8" />
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
    <title>Page Not Found</title>
Michael Breu's avatar
Michael Breu committed
    <meta name="viewport" content="width=device-width, initial-scale=1" />
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
    <link rel="icon" href="favicon.ico" />
    <style>
Michael Breu's avatar
Michael Breu committed
      * {
        line-height: 1.2;
        margin: 0;
      }

      html {
        color: #888;
        display: table;
        font-family: sans-serif;
        height: 100%;
        text-align: center;
        width: 100%;
      }

      body {
        display: table-cell;
        vertical-align: middle;
        margin: 2em auto;
      }

      h1 {
        color: #555;
        font-size: 2em;
        font-weight: 400;
      }

      p {
        margin: 0 auto;
        width: 280px;
      }

      @media only screen and (max-width: 280px) {
        body,
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
        p {
Michael Breu's avatar
Michael Breu committed
          width: 95%;
Michael Breu's avatar
Michael Breu committed
        h1 {
          font-size: 1.5em;
          margin: 0 0 0.3em;
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
        }
Michael Breu's avatar
Michael Breu committed
      }
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
    </style>
Michael Breu's avatar
Michael Breu committed
  </head>
  <body>
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
    <h1>Page Not Found</h1>
    <p>Sorry, but the page you were trying to view does not exist.</p>
Michael Breu's avatar
Michael Breu committed
  </body>
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
</html>
<!-- IE needs 512+ bytes: http://blogs.msdn.com/b/ieinternals/archive/2010/08/19/http-error-pages-in-internet-explorer.aspx -->