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://linxpage.com/finance/vdrlwzubao/

  1. <!doctype html>
  2. <html>
  3. <head>
  4.    <title></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.  
  44.        @media (max-width: 768px) {
  45.            .container {
  46.                display: flex;
  47.                flex-direction: column;
  48.                width: 100%;
  49.            }
  50.            .container-text{
  51.                padding: 30px;
  52.                text-align: center;
  53.                min-width: auto;
  54.            }
  55.            .container-code{
  56.                min-width: auto;
  57.                text-align: center;
  58.                margin-top: 100px;
  59.            }
  60.        }
  61.    </style>
  62. </head>
  63. <body>
  64.    <div class="container">
  65.        <div class="container-code">
  66.            <span class="error_code">404</span>
  67.            <span class="error_description message_2"></span>
  68.        </div>
  69.        <div class="container-text">
  70.            <span class="error_brief message_0"></span>
  71.        </div>
  72.    </div>
  73. <script>
  74.    window.languages = {
  75.        'en': {
  76.            '.message_0': 'The requested resource was not found on the server',
  77.            'title': '404 Not Found',
  78.            '.message_2': 'Not Found'
  79.        },
  80.        'pl': {
  81.            '.message_0': 'Żądany zasób nie został znaleziony na serwerze',
  82.            'title': '404 Nie znaleziono',
  83.            '.message_2': 'Nie znaleziono'
  84.        },
  85.        'de': {
  86.            '.message_0': 'Die angeforderte Ressource wurde auf dem Server nicht gefunden',
  87.            'title': '404 Nicht gefunden',
  88.            '.message_2': 'Nicht gefunden'
  89.        },
  90.        'uk': {
  91.            '.message_0': 'Запитуваний ресурс не знайдено на сервері',
  92.            'title': '404 Не знайдено',
  93.            '.message_2': 'Не знайдено'
  94.        },
  95.        'cn': {
  96.            '.message_0': '服务器上未找到请求的资源',
  97.            'title': '404 未找到',
  98.            '.message_2': '未找到'
  99.        },
  100.        'ru': {
  101.            '.message_0': 'Запрошенный ресурс не найден на сервере',
  102.            'title': '404 Не найден',
  103.            '.message_2': 'Не найден'
  104.        }
  105.    };
  106.  
  107. function display(){
  108. let default_lang = 'en',
  109. browser_lang = window.navigator.language || navigator.userLanguage,
  110. lang = '';
  111.  
  112. browser_lang = browser_lang.slice(0, 2).toLowerCase();
  113.  
  114. if( window.languages.hasOwnProperty(browser_lang) ){
  115. lang = browser_lang;
  116. }else{
  117. lang = default_lang;
  118. }
  119.  
  120. for (let key in window.languages[lang]){
  121. if(undefined !== document.querySelector(key)){
  122. document.querySelector(key).innerHTML = window.languages[lang][key];
  123. }
  124. }
  125.  
  126. return false;
  127. }
  128.  
  129. document.addEventListener("DOMContentLoaded", display);
  130. </script>
  131. </body>
  132. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda