| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <link type="text/css" rel="stylesheet" href="assets/css/bootstrap.min.css">
- <link type="text/css" rel="stylesheet" href="assets/css/all.min.css">
- <link type="text/css" rel="stylesheet" href="assets/css/animate.css">
- <link type="text/css" rel="stylesheet" href="assets/css/style.css">
- <title>Page Not Found</title>
- </head>
- <body>
- <div class="container text-center">
- <div class="row">
- <div class="col">
- <div class="animated fadeIn">
- <i class="fas fa-question-circle icon-large info"></i>
- </div>
- <h1 class="animated fadeIn">Page Not Found</h1>
- <div class="description-text animated fadeIn delay-1s">
- <p>Oops! We couldn't find the page that you're looking for.</p>
- <p>Please check the address and try again.</p>
- <section class="footer"><strong>Error Code:</strong> 404</section>
- </div>
- </div>
- </div>
- </div>
-
- <script src="assets/js/bootstrap.min.js"></script>
- </body>
- </html>
|