1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <!-- Tell the browser to be responsive to screen width -->
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="description" content="">
- <meta name="author" content="">
- <!-- Favicon icon -->
- <link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon.png">
- <title></title>
- <!-- Bootstrap Core CSS -->
- <link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
- <!-- Custom CSS -->
- <link href="css/style.css" rel="stylesheet">
- <!-- You can change the theme colors from here -->
- <link href="css/colors/blue.css" id="theme" rel="stylesheet">
- <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
- <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
- </head>
- <body class="fix-header card-no-border">
- <!-- ============================================================== -->
- <!-- Main wrapper - style you can find in pages.scss -->
- <!-- ============================================================== -->
- <section id="wrapper" class="error-page">
- <div class="error-box">
- <div class="error-body text-center">
- <h1>404</h1>
- <h3 class="text-uppercase">Page Not Found !</h3>
- <p class="text-muted m-t-30 m-b-30">YOU SEEM TO BE TRYING TO FIND HIS WAY HOME</p>
- <a href="index" class="btn btn-info btn-rounded waves-effect waves-light m-b-40">Back to home</a> </div>
- <footer class="footer text-center">2017 © Monster Admin.</footer>
- </div>
- </section>
- <!-- ============================================================== -->
- <!-- End Wrapper -->
- <!-- ============================================================== -->
- <!-- ============================================================== -->
- <!-- All Jquery -->
- <!-- ============================================================== -->
- <script src="assets/plugins/jquery/jquery.min.js"></script>
- <!-- Bootstrap tether Core JavaScript -->
- <script src="assets/plugins/bootstrap/js/tether.min.js"></script>
- <script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
- <!--Wave Effects -->
- <script src="js/waves.js"></script>
- </body>
- </html>
|