It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://depscat.com/user/ClariceWatts96/

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.    <meta charset="UTF-8">
  5.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.    <title>404 Not Found</title>
  7.    <style>
  8.        body {
  9.            font-family: 'Arial', sans-serif;
  10.            color: #333;
  11.            text-align: center;
  12.            padding: 20px;
  13.            background-color: #f4f4f4;
  14.        }
  15.        h1 {
  16.            font-size: 2em;
  17.        }
  18.        p {
  19.            font-size: 1em;
  20.        }
  21.        a {
  22.            color: #007bff;
  23.            text-decoration: none;
  24.        }
  25.        a:hover {
  26.            text-decoration: underline;
  27.        }
  28.        .search-container {
  29.            margin-top: 20px;
  30.        }
  31.        .search-container input[type="text"],
  32.        .search-container input[type="submit"] {
  33.            padding: 10px;
  34.            margin: 5px 0;
  35.            width: calc(100% - 22px);
  36.        }
  37.  
  38.        /* Адаптация для больших экранов */
  39.        @media (min-width: 600px) {
  40.            body {
  41.                padding: 50px;
  42.            }
  43.            h1 {
  44.                font-size: 50px;
  45.            }
  46.            p {
  47.                font-size: 20px;
  48.            }
  49.            .search-container input[type="text"] {
  50.                width: 200px; /* Фиксированная ширина для десктопов */
  51.            }
  52.            .search-container input[type="submit"] {
  53.                width: auto;
  54.            }
  55.        }
  56.    </style>
  57. </head>
  58. <body>
  59.    <h1>404 Error</h1>
  60.    <p>Sorry, the page you are looking for cannot be found!</p>
  61.    <p><a href="/">Go back to the Homepage</a></p>
  62.    <div class="search-container">
  63.        <input type="text" placeholder="Search...">
  64.        <input type="submit" value="Search">
  65.    </div>
  66. </body>
  67. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda