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://www.sublimedir.net/listing/trailer-stores-nearby-250418

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.    <head>
  4.        
  5.        <title>Sublime Dir .net</title>
  6.        
  7.        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8.        <script type="text/javascript">
  9.            var DOC_ROOT = 'https://sublimedir.net';
  10.        </script>
  11.        
  12.        
  13. <link rel="stylesheet" type="text/css" href="/templates/DevXBlue/style/column.css" />
  14. <link rel="stylesheet" type="text/css" href="/templates/DevXBlue/style/form.css" />
  15. <link rel="stylesheet" type="text/css" href="/templates/DevXBlue/style/main_min.css" />
  16.        <link rel="stylesheet" type="text/css" href="/templates/DevXBlue/style/colors/default-theme.css" />
  17.         <!--[if IE 7]>
  18.   <link rel="stylesheet" type="text/css" href="/templates/DevXBlue/style/ie7.css" />
  19.  <![endif]-->
  20.  
  21.        
  22.        <link rel="stylesheet" type="text/css" href="/templates/Core/DefaultFrontend/style/select2.css"  />
  23.        <link rel="stylesheet" type="text/css" href="/templates/Core/DefaultFrontend/style/fg.menu.css" />
  24.        <link rel="stylesheet" type="text/css" href="/templates/Core/DefaultFrontend/style/theme/jquery-ui-1.8.23.custom.css"  />
  25.  
  26.  
  27.        
  28.        
  29.        
  30.        <meta name="generator" content="PHP Link Directory 5.3" />
  31.  
  32.        
  33.        
  34.                <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  35.        <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.min.js"></script>
  36.        
  37.        
  38.            <script type="text/javascript">
  39.             var $ = jQuery.noConflict();
  40.            </script>
  41.        
  42.  
  43.        <script type="text/javascript" src="/javascripts/jquery/jquery.select2.js"></script>
  44.        <script type="text/javascript" src="/javascripts/jquery/jquery.fg.menu.js"></script>
  45.  
  46.        
  47. <style type="text/css">
  48. body {
  49.  
  50.  
  51. }
  52. </style>
  53.  
  54.        
  55.        
  56.    </head>
  57.    <body>
  58.    <div class="wrap">
  59.        <div class="masthead">
  60.            <div>
  61.                <div class="phpld-wbox">
  62.                    
  63. <div class="userPanel">
  64.            <a href="/login" class="btn-slide">Login</a>
  65.        &nbsp;|&nbsp;
  66.        <a href="/user/register" title="Register new user">Register</a>
  67.        </div>
  68.  
  69.                    <div class="phpld-clearfix"></div>
  70.  
  71.                    <div class="header">
  72.                        <div class="headerLogo">
  73.                                <h1><a href="/">Sublime Directory .net</a></h1>
  74.  
  75.                        </div>
  76.                        
  77.  
  78. <script type="text/javascript">
  79.  
  80. var servername = ""+"/Search/ajaxSearchLinks/";
  81.  
  82. function split( val ) {
  83.    return val.split( /,\s*/ );
  84. }
  85.  
  86. function extractLast( term ) {
  87.    return split( term ).pop();
  88. }
  89.  
  90. function linkFormatResult(link) {
  91.    //<![CDATA[
  92.    var markup = "<hr \/><div class='listing-list-item ajax-search-result'>";
  93.    markup += "<div class='link-info'><div class='listing-title'><a href='"+link.url+"'><b>" + link.title + "</b></a></div>";
  94.    if (link.description !== undefined) {
  95.        markup += "<div class='description'><a href='"+link.url+"'>" + link.description + "</a></div>";
  96.    }
  97.    markup += "</div></div>"
  98.    return markup;
  99.    //]]>
  100. }
  101.  
  102.  
  103. function linkFormatSelection(link) {
  104.     return link.title;
  105. }
  106.  
  107. var currEnteredData = null;
  108.  
  109. jQuery(document).ready(function($){
  110.    $("#autoquery").select2({
  111.        placeholder:"Search for a link",
  112.        minimumInputLength:1,
  113.        ajax:{
  114.            url:servername,
  115.            dataType:'json',
  116.            quietMillis:100,
  117.            allowClear:true,
  118.            data:function (term, page) { // page is the one-based page number tracked by Select2
  119.                return {
  120.                    linkQuery: {q: term, loc: $("#autoquery-location").val()}, //search term
  121.                    page_limit:100 // page size
  122.                };
  123.            },
  124.        results:function (data, page) {
  125.            // notice we return the value of more so Select2 knows if more results can be loaded
  126.            for (x in data.result) {
  127.                data.result[x].id = data.result[x].url;
  128.            }
  129.            data.result.unshift({'id':data.url, 'title':currEnteredData, 'url':'/search?search='+currEnteredData})
  130.            return {results:data.result};
  131.        }
  132.    },
  133.  
  134.    formatResult:linkFormatResult, // omitted for brevity, see the source of this page
  135.  
  136.    formatSelection:linkFormatSelection // omitted for brevity, see the source of this page
  137.  
  138.    }).on('change', function(event){
  139.  
  140.        document.location.href = $(this).val();
  141.  
  142.    });
  143.  
  144.  
  145.  
  146.    jQuery(".select2-search input[type='text']").keyup(function(event){
  147.        currEnteredData = jQuery(this).val();
  148.  
  149.    });
  150.  
  151. jQuery("#search_form").submit(function(){
  152. jQuery("#autoquery").val(currEnteredData);
  153. });
  154.  
  155. });
  156.  
  157.  
  158.  
  159. </script>
  160.  
  161.  
  162.  
  163. <form class="phpld-form headerSearch" action="/search/basic" method="get" id="search_form">
  164. <div class="phpld-columnar phpld-equalize" style="overflow: visible">
  165.     <div class="phpld-fbox-text float-left" style="margin-top:5px;">
  166.         <input name="search" maxlength="150"  style="width: 400px; margin-top: 2px; height: 25px;" value="" />
  167.     </div>
  168.     <div class="phpld-fbox-button float-left " style="position:absolute; margin-top:7px;">  
  169.         <input class="button phpld-searchbutton" type="submit" value="GO" />
  170.     </div>
  171. </div>
  172. </form>
  173.  
  174.                    </div>
  175.                </div>
  176.            </div>
  177.            
  178.            <div class="phpld-clearfix"></div>
  179.  
  180.            <div id="nav">
  181.                <div class="phpld-wbox">
  182.                    <div class="phpld-hlist">
  183.                        <ul><li><a href="https://sublimedir.net/submit">Submit Link</a></li><li><a href="https://sublimedir.net/latest">Latest Links</a></li><li><a href="https://sublimedir.net/top">Top Hits</a></li><li><a href="https://sublimedir.net/rss">Rss</a></li></ul>
  184.                   </div>
  185.                </div>
  186.            </div>
  187.        </div>
  188.        <div class="phpld-wbox">
  189.        <div class="phpld-clearfix"></div>
  190.        <center>
  191.  
  192.  
  193. <div id="contentad369379"></div>
  194. <script type="text/javascript">
  195.    (function(d) {
  196.        var params =
  197.        {
  198.            id: "9f6db78c-30f6-4346-baed-269b43f545e3",
  199.            d:  "c3VibGltZWRpci5uZXQ=",
  200.            wid: "369379",
  201.            cb: (new Date()).getTime()
  202.        };
  203.  
  204.        var qs=[];
  205.        for(var key in params) qs.push(key+'='+encodeURIComponent(params[key]));
  206.        var s = d.createElement('script');s.type='text/javascript';s.async=true;
  207.        var p = 'https:' == document.location.protocol ? 'https' : 'http';
  208.        s.src = p + "://api.content-ad.net/Scripts/widget2.aspx?" + qs.join('&');
  209.        d.getElementById("contentad369379").appendChild(s);
  210.    })(document);
  211. </script>
  212.                    
  213. <div id="contentad369380"></div>
  214. <script type="text/javascript">
  215.    (function(d) {
  216.        var params =
  217.        {
  218.            id: "8081d04a-f563-4e2f-ba74-2383ac3fe628",
  219.            d:  "c3VibGltZWRpci5uZXQ=",
  220.            wid: "369380",
  221.            exitPop: true,
  222.            cb: (new Date()).getTime()
  223.        };
  224.  
  225.        var qs=[];
  226.        for(var key in params) qs.push(key+'='+encodeURIComponent(params[key]));
  227.        var s = d.createElement('script');s.type='text/javascript';s.async=true;
  228.        var p = 'https:' == document.location.protocol ? 'https' : 'http';
  229.        s.src = p + "://api.content-ad.net/Scripts/widget2.aspx?" + qs.join('&');
  230.        d.getElementById("contentad369380").appendChild(s);
  231.    })(document);
  232. </script>
  233.                    
  234.  
  235. <!--Start Banner Code--><a href="https://peakerr.com/" target="_blank" title="SMM Panel"><img src="https://cdn.mypanel.link/a96e84/w8kzulzuj6uem4em.gif" alt="SMM Panel" border="0" /></a><br /><center><div style='width: 728px;'>PEAKERR is the Cheapest and Best <b>SMM Panel</b> company that provides advertising, marketing, and promotional services to its clients.</div></center><!--End Banner Code-->
  236. <link rel="stylesheet" type="text/css" href="/SponsLinks/banner-css/link_to_premium-featured-links.css" /><br><br><div class="premium-featured-links"><a href="http://sublimedir.net/premium-featured-links.html" onclick="window.open('http://sublimedir.net/premium-featured-links.html','newwindow','width=450,height=350');return false;" ><b>&raquo;&raquo; Looking for Premium Featured Links at Very Low Prices &laquo;&laquo;</b></a></div>
  237. </center><div class="content-wrapper"><div class="path"></div><div class="phpld-column linearize-level-1">
  238. <div class="phpld-col1"  style="width:25%;">
  239.    <div class="phpld-cbox">
  240.                    <div class="phpld-grid phpld-full phpld-widget" id="widget_12">
  241.    <div class="boxTop"></div>
  242.            <h3>Advertisement</h3>
  243.         <font color=#000000>&raquo; <a href="https://localiser-un-telephone.fr/news/" title="Global Pulse"><b>Global Pulse</b></a> Your go-to source for comprehensive world news, delivering reports and analysis from every corner of the globe.</font><br /><br /><font color=#000000>&raquo; <a href="https://www.carloansakron.com" title="Used Cars For Sale"><b>Used Cars For Sale</b></a> Integrity Used Cars For Sale Akron Ohio</font><br /><br /><font color=#000000>&raquo; <a href="https://peakerr.com/" title="SMM Panel"><b>SMM Panel</b></a> PEAKERR is an SMM Panel that stands out amongst the rest. It offers high-quality panels at incredibly affordable rates. Moreover, you can also purchase various social media marketing services to enhance your marketing strategy at low prices.</font><br /><br /><font color=#000000>&raquo; <a href="https://bulkfollows.com" title="SMM PANEL"><b>SMM PANEL</b></a> Bulkfollows is the cheapest and best <b>SMM PANEL</b> for High Quality services. Get Instant likes, Followers & Views for Instagram, Facebook, TikTok, YouTube, Twitter, Telegram & more.</font><br /><br /><font color=#000000>&raquo; <a href="https://smmpanellist.com/" title="Best and Cheapest SMM Panel"><b>Best SMM Panel</b></a> List of Top 10 Best and Cheapest SMM Panel Services Providers For Resellers and Individuals. Mainly TikTok, Instagram, YouTube, Facebook, Telegram and Twitter services Providers.</font><br /><br />
  244. <font color=#000000>&raquo; <a href="https://www.aayushie.com/" title="Chennai escorts"><b>Chennai escorts</b></a> Sexy Chennai Escorts are encountered and certified in all manners of sexual activities and also provide a 32% discount for every Chennai Escort Service.</font><br /><br />
  245.  
  246. <font color=#000000>&raquo; <a href="https://www.ennessglobal.com" title="High Value Global Mortgages for international Private Clients"><b>High Value Global Mortgages for international Private Clients</b></a> Our mortgage offering includes: Residential Mortgages, Buy to Let Mortgages, Commercial Finance, Development Finance, Bridging Finance , Asset Finance</font><br /><br />
  247. <font color=#000000>&raquo; <a href="https://www.Lescort.com" title="Lescort.com"><b>Lescort.com</b></a> Best Swiss escort directory Lescort</font><br /><br />
  248. <font color=#000000>&raquo;<strong><a href="http://46-directories.directoriesadvertising.com/advertising-46-directories.php#sponsorlink" target="_blank" title="Your Link Here for $0.80/directory">Your Link Here for $0.80</a></strong></font><br /><br />
  249. <font color=#000000>&raquo;<strong><a href="http://46-directories.directoriesadvertising.com/advertising-46-directories.php#sponsorlink" target="_blank" title="Your Link Here for $0.80/directory">Your Link Here for $0.80</a></strong></font><br /><br />
  250. <center>
  251.  
  252.  
  253. </center>
  254. </div>
  255.  
  256.            
  257.    </div>
  258. </div>
  259. <div class="phpld-col2"  style="width:25%;">
  260.    <div class="phpld-cbox">
  261.                    <div class="phpld-grid phpld-full phpld-widget" id="widget_11">
  262.    <div class="boxTop"></div>
  263.            <h3>Our Partners</h3>
  264.         <center>
  265. <br /><br />
  266. <!--Start Banner Code--><a href="http://46-directories.directoriesadvertising.com/advertising-46-directories.php#125x125banner" target="_blank" title="advertising with 46 directories"><img src="/SponsLinks/1_side_banner.png" alt="YOUR BANNER HERE" /></a><!--End Banner Code--><br /><br />
  267.  
  268.  
  269. <div id="contentad369381"></div>
  270. <script type="text/javascript">
  271.    (function(d) {
  272.        var params =
  273.        {
  274.            id: "d93e8cf2-1fa4-4b82-8e5e-9c1eb400981a",
  275.            d:  "c3VibGltZWRpci5uZXQ=",
  276.            wid: "369381",
  277.            cb: (new Date()).getTime()
  278.        };
  279.  
  280.        var qs=[];
  281.        for(var key in params) qs.push(key+'='+encodeURIComponent(params[key]));
  282.        var s = d.createElement('script');s.type='text/javascript';s.async=true;
  283.        var p = 'https:' == document.location.protocol ? 'https' : 'http';
  284.        s.src = p + "://api.content-ad.net/Scripts/widget2.aspx?" + qs.join('&');
  285.        d.getElementById("contentad369381").appendChild(s);
  286.    })(document);
  287. </script>
  288.                    
  289. <br />
  290. </center>
  291. <font color=#000000>&raquo; <a href="https://xregards.com/" title="XRegards"><b>XRegards</b></a> Get a Message Written on Boobs or Booty</font><br /><br /><font color=#000000>&raquo; <a href="https://instafans.com/" title="Instafans.com"><b>Instafans.com</b></a> The safe space for ALL creators</font><br /><br /><font color=#000000>&raquo; <a href="https://www.escort-ireland.com/" title="Escort-Ireland.com"><b>Escort-Ireland.com</b></a> Escorts in Ireland & Northern Ireland</font><br /><br /><font color=#000000>&raquo; <a href="https://www.escort-scotland.com/" title="Escort-Scotland.com"><b>Escort-Scotland.com</b></a> #1 for Verified Escorts in Scotland</font><br /><br /><font color=#000000>&raquo; <a href="https://www.xescorts.com/" title="XEscorts.com"><b>XEscorts.com</b></a> #1 Escort Directory in Europe</font><br /><br /><font color=#000000>&raquo; <a href="https://www.escortfans.com/" title="Escortfans.com"><b>Escortfans.com</b></a> Escort Fans - The escort social network</font><br /><br /><font color=#000000>&raquo; <a href="https://sugar.ie/" title="Sugar.ie"><b>Sugar.ie</b></a> Ireland's #1 Sugar Dating Platform</font><br /><br /><font color=#000000>&raquo; <a href="https://figgmi.ch/de/" title="Figgmi.ch"><b>Figgmi.ch</b></a> Sex & Erotik Inserate Plattform in der Schweiz</font><br /><br />
  292. <br />
  293. <center>
  294. <span style="background-color: #005083; color: #fff; padding: 3 6px;"><a href="http://www.fire-directory.com/free-directory-list-1.php" title="Fast & instant Approval Directory List - 90 WebDirectories"><font color=#FFFFFF><b>Fast & instant Approval Directory List - 90 WebDirectories</b></font></a></span><br />
  295. </center>
  296. <ul class="boxPopCats">
  297. </ul>
  298. </div>
  299.  
  300.            
  301.    </div>
  302. </div><div class="phpld-col3"  style="margin-left:25%;
  303.                                margin-right:25%;">
  304.  
  305.    <div class="phpld-cbox">
  306.                    
  307.                                                        <div class="phpld-grid phpld-full phpld-widget" id="widget_3">
  308.    <div class="boxTop"></div>
  309.        <div class="pageNotFound">
  310.    <div>404</div>
  311.    Page Not Found
  312. </div>
  313. </div>
  314.  
  315.                            
  316.                    
  317.                    
  318.                    
  319.                    
  320.        
  321.    </div>
  322. </div></div></div><div class="footer">Powered By: <a href="http://www.phplinkdirectory.com" title="powered by PHP Link Directory"> PHP Link Directory </a></div></div></div><script type="text/javascript">
  323.  
  324.  var _gaq = _gaq || [];
  325.  _gaq.push(['_setAccount', 'UA-3696497-20']);
  326.  _gaq.push(['_trackPageview']);
  327.  
  328.  (function() {
  329.    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  330.    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  331.    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  332.  })();
  333.  
  334. </script>
  335.  
  336.  
  337. <script type="text/javascript">
  338.  
  339.  var _gaq = _gaq || [];
  340.  _gaq.push(['_setAccount', 'UA-31513574-3']);
  341.  _gaq.push(['_trackPageview']);
  342.  
  343.  (function() {
  344.    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  345.    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  346.    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  347.  })();
  348.  
  349. </script>
  350.  
  351.  
  352. <script type="text/javascript">
  353.  
  354.  var _gaq = _gaq || [];
  355.  _gaq.push(['_setAccount', 'UA-31513574-2']);
  356.  _gaq.push(['_trackPageview']);
  357.  
  358.  (function() {
  359.    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  360.    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  361.    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  362.  })();
  363.  
  364. </script><script type="text/javascript">
  365.    /* <![CDATA[ */
  366.    var root = '';
  367.    
  368.    var a = document.getElementsByTagName("a");
  369.    for(i = 0; i< a.length; i++)
  370.        if(a[i].id != '')
  371.            a[i].onclick = count_link;
  372.    function count_link(event) {
  373.        i = new Image();
  374.        i.src= root+'/cl.php?id='+this.id;
  375.        return true;
  376.    }
  377.  
  378.    
  379.    /* ]]> */
  380. </script></body></html>
  381.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda