|
|
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
- <link rel="stylesheet" href="./style.css" />
- </head>
- <body>
- <div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center">
- <div id="header-title">
- <a href="./index.html">
- <img id="logo" class="text-center" src="./logo.svg" />
- </a>
- </div>
- <ul id="navigation" class="nav justify-content-end">
- <li class="nav-item">
- <a href="./GraphTest.html">
- Generate graphs
- </a>
- </li>
- <div class="nav-sep"></div>
- <li class="nav-item">
- <a href="https://github.com/jrtechs/github-graphs">
- View on GitHub
- </a>
- </li>
- <div class="nav-sep"></div>
- <li class="nav-item">
- <a href="./about.html">
- About
- </a>
- </li>
- </ul>
- </div>
- <div class="main">
- <div id="content" class="error container text-center">
- <h1 id="error-code">404</h1>
- <img id="dcimg" src="./img/DolphinCroissant.png" />
- <p style="padding-top: 25px;">Yeah, that page doesn't exist.</p>
- <p>Maybe if you weren't so adventurous you'd avoid screens like this :)</p>
- </div>
- </div>
- </body>
- </html>
|