<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>URL Not Found</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            margin-top: 100px;
            color: #333;
        }
        h1 {
            font-size: 48px;
        }
        p {
            font-size: 24px;
        }
        a {
            text-decoration: none;
            color: #007bff;
        }
    </style>
</head>
<body>
<h1>Oops!</h1>
<p>The URL you are trying to access is invalid or does not exist.</p>
<p>Please try again</p>
</body>
</html>
