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://yekaterinburgski.ru

  1. <!doctype html>
  2. <html>
  3. <head>
  4.    <title>403 Forbidden - Apache</title>
  5.    <meta charset="UTF-8">
  6.    <meta name="viewport" content="width=device-width">
  7.    <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
  8.    <style>
  9.        body, html {
  10.            height: 100%;
  11.            margin: 0;
  12.            display: flex;
  13.            justify-content: center;
  14.            align-items: center;
  15.            background-color: #f1f4f5;
  16.            color: #37474f;
  17.            font-family: 'Open Sans', sans-serif;
  18.        }
  19.        .container {
  20.            display: flex;
  21.            width: 535px;
  22.        }
  23.        .container-code{
  24.            min-width: 250px;
  25.            text-align: center;
  26.        }
  27.        .container-text {
  28.            min-width: 250px;
  29.            padding-left: 20px;
  30.        }
  31.        .error_code {
  32.            display: block;
  33.            font-size: 92px;
  34.            font-weight: 700;
  35.            margin-top: -25px;
  36.        }
  37.        .error_brief {
  38.            display: block;
  39.            font-size: 18px;
  40.            font-weight: 700;
  41.            margin-bottom: 15px;
  42.        }
  43.        .help_button {
  44.            background-color: #399bff;
  45.            color: #fff;
  46.            margin-top: 15px;
  47.            font-size: 14px;
  48.            padding: 7px 20px 7px 20px;
  49.            border: none;
  50.            border-radius: 3px;
  51.            vertical-align: middle;
  52.            cursor: pointer;
  53.        }
  54.        #fix_details {
  55.            margin-top: 20px;
  56.            visibility: hidden;
  57.            transition: visibility 0.3s, opacity 0.3s linear;
  58.        }
  59.  
  60.        @media (max-width: 768px) {
  61.            .container {
  62.                display: flex;
  63.                flex-direction: column;
  64.                width: 100%;
  65.            }
  66.            .container-text{
  67.                padding: 30px;
  68.                text-align: center;
  69.                min-width: auto;
  70.            }
  71.            .container-code{
  72.                min-width: auto;
  73.                text-align: center;
  74.                margin-top: 100px;
  75.            }
  76.        }
  77.    </style>
  78. </head>
  79. <body>
  80. <script>
  81.    function toggleHelp() {
  82.        document.getElementById("fix_details").style.visibility = 'visible';
  83.        document.getElementById("fix_details").style.opacity = '1';
  84.  
  85.        document.querySelectorAll('.hide-help').forEach(function (el){
  86.            if (undefined !== el){
  87.                el.style.display = 'none';
  88.            }
  89.        });
  90.    }
  91. </script>
  92. <div class="container">
  93.    <div class="container-code">
  94.        <span class="error_code">403</span>
  95.        <span class="error_description">Forbidden</span>
  96.    </div>
  97.  
  98.    <div class="container-text">
  99.        <span class="error_brief">В доступі відмовлено</span>
  100.        <span class="error_detail">Можливо, не завантажений індексний файл або неправильно вказані права для нього.</span>
  101.        <br class="hide-help"/>
  102.        <input type="button" value="Як це виправити?" class="help_button hide-help" onclick="toggleHelp()">
  103.  
  104.        <div id="fix_details">
  105.            Якщо Ви адміністратор сайту, виправити цю помилку допоможе стаття
  106.            <a href="https://www.ukraine.com.ua/wiki/hosting/errors/403/">Помилка 403 Forbidden</a> в нашій довідці.
  107.        </div>
  108.    </div>
  109. </div>
  110.  
  111. </body>
  112. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda