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://dz4link.com/g33a

  1. <!DOCTYPE html>
  2. <html lang="auto">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>404</title>
  6.   <style>
  7. body {
  8. display: flex;
  9. justify-content: center;
  10. align-items: center;
  11. height: 100vh;
  12. margin: 0;
  13. padding: 0;
  14. transition: background-color 0.3s, color 0.3s;
  15. font-family: Arial, sans-serif;
  16. }
  17. .search-container {
  18. text-align: center;
  19. }
  20. form {
  21. display:flex;
  22. flex-grow: 1;
  23. margin:0 -30px;
  24. }
  25. input[type="text"] {
  26. border: 1px solid;
  27. border-radius: 20px;
  28. padding: 10px 20px;
  29. outline: none;
  30. background-color: transparent;
  31. color: inherit;
  32. font-size: 16px;
  33. display: flex;
  34. flex-grow: 1;
  35. }
  36. @media (prefers-color-scheme: dark) {
  37. body {
  38. background-color: #121212;
  39. color: white;
  40. }
  41. input[type="text"] {
  42. border-color: white;
  43. }
  44. }
  45. @media (prefers-color-scheme: light) {
  46. body {
  47. background-color: white;
  48. color: black;
  49. }
  50. input[type="text"] {
  51. border-color: black;
  52. }
  53. }
  54. </style>
  55. </head>
  56. <body>
  57. <div class="search-container">
  58. <p id="not-found-message">Nothing found, but you can search here</p>
  59. <form action="https://www.google.com/search" method="get">
  60. <input type="text" name="q" id="search-query">
  61. </form>
  62. </div>
  63. <script>
  64. const userLang = navigator.language || navigator.userLanguage;
  65.  const langMap = {
  66. 'en': 'Nothing found, but you can search here',
  67. 'zh': '没有找到任何内容,但您可以在这里搜索',
  68. 'es': 'No se encontró nada, pero puedes buscar aquí',
  69. 'hi': 'कुछ नहीं मिला, लेकिन आप यहां खोज सकते हैं',
  70. 'ar': 'لم يتم العثور على شيء، لكن يمكنك البحث هنا',
  71. 'bn': 'কিছু পাওয়া যায়নি, তবে আপনি এখানে অনুসন্ধান করতে পারেন',
  72. 'pt': 'Nada encontrado, mas você pode pesquisar aqui',
  73. 'ru': 'Ничего не найдено, но вы можете поискать здесь',
  74. 'ja': '何も見つかりませんでしたが、ここで検索できます',
  75. 'de': 'Nichts gefunden, aber Sie können hier suchen'
  76. };
  77. document.getElementById('not-found-message').innerText = langMap[userLang.split('-')[0]] || 'Nothing found, but you can search here:';
  78. const urlParams = new URLSearchParams(window.location.search);
  79. const field =  document.getElementById('search-query');
  80.   field.value = urlParams.get('q') || '';
  81.   field.focus();
  82. </script>
  83. </body>
  84. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda