123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE HTML>
- <!--
- Free for personal and commercial use under the CCA 3.0 license (/license)
- -->
- <html>
- <head>
- <link rel = "stylesheet"
- type = "text/css"
- href = "css/normalize.css" />
- </head>
- <body>
- <style>
- html {
- height: 100%;
- }
- body {
- height: 100%;
- }
- #container {
- height: 100%;
- }
- .flex-container {
- display: flex;
- align-items: center;
- justify-content: center;
- min-height:100%;
- }
- .flex-container-inner {
- max-width: 50%
- }
- </style>
- <div id="container">
- <!-- <div id="wrapper"> -->
- <!-- <div id="inner-wrapper"> -->
- <div class="flex-container">
- <div class="flex-container-inner">
- <p>404</p>
- </div>
- </div>
- <!-- </div> -->
- <!-- </div> -->
- </div>
- </body>
- </html>
|