42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<!-- Primary Meta Tags -->
|
||
<title>! Error 404 ?</title>
|
||
<meta name="title" content="! Error 404 ?" />
|
||
<meta name="description" content="A simple error 404 page..." />
|
||
<!-- Open Graph / Facebook -->
|
||
<meta property="og:type" content="website" />
|
||
<meta property="og:url" content="<?php echo $url; ?>" />
|
||
<meta property="og:title" content="! Error 404 ?" />
|
||
<meta property="og:description" content="A simple error 404 page..." />
|
||
<!-- Twitter -->
|
||
<meta property="twitter:card" content="summary_large_image" />
|
||
<meta property="twitter:url" content="<?php echo $url; ?>" />
|
||
<meta property="twitter:title" content="! Error 404 ?" />
|
||
<meta property="twitter:description" content="A simple error 404 page..." />
|
||
<meta name="robots" content="nofollow, noindex" />
|
||
<link rel="stylesheet" type="text/css" href="/assets/css/my.css" />
|
||
<!-- Font Awesome for icons -->
|
||
<link
|
||
rel="stylesheet"
|
||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
|
||
/>
|
||
<!-- jQuery for drag and drop functionality -->
|
||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.min.js"></script>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1 class="title">Error 404</h1>
|
||
<p class="subtitle">
|
||
Oops! The page you’re looking for doesn’t exist or has been moved.
|
||
<br />
|
||
Let’s get you back on track.
|
||
</p>
|
||
</div>
|
||
</body>
|
||
</html>
|