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://one-sublime-directory.com/listing/camper-stores-around-me-441687/

  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>One Sublime Directory .com</title>
  6.        
  7.        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8.        <script type="text/javascript">
  9.            var DOC_ROOT = 'https://one-sublime-directory.com';
  10.        </script>
  11.        
  12.        
  13. <link rel="stylesheet" type="text/css" href="/templates/ClearLake/style/column.css" />
  14. <link rel="stylesheet" type="text/css" href="/templates/ClearLake/style/form.css" />
  15. <link rel="stylesheet" type="text/css" href="/templates/ClearLake/style/main_min.css" />
  16.        <link rel="stylesheet" type="text/css" href="/templates/ClearLake/style/colors/default-theme.css" />
  17.         <!--[if IE 7]>
  18.   <link rel="stylesheet" type="text/css" href="/templates/ClearLake/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="topborder"></div>
  59.    <div class="masthead">
  60.            <div class="masthead-inner">
  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="/">One Sublime Directory .com</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://one-sublime-directory.com/submit">Submit Link</a></li><li><a href="https://one-sublime-directory.com/latest">Latest Links</a></li><li><a href="https://one-sublime-directory.com/top">Top Hits</a></li><li><a href="https://one-sublime-directory.com/rss">Rss</a></li></ul>
  184.                   </div>
  185.                </div>
  186.            </div>
  187.    </div>
  188.    <div class="wrap">
  189.        
  190.        <div class="phpld-wbox">
  191.        <div class="phpld-clearfix"></div>
  192.        <center>
  193.  
  194.  
  195. <div id="contentad369387"></div>
  196. <script type="text/javascript">
  197.    (function(d) {
  198.        var params =
  199.        {
  200.            id: "754595ea-c908-4e68-9ef8-586f7b77796a",
  201.            d:  "b25lLXN1YmxpbWUtZGlyZWN0b3J5LmNvbQ==",
  202.            wid: "369387",
  203.            cb: (new Date()).getTime()
  204.        };
  205.  
  206.        var qs=[];
  207.        for(var key in params) qs.push(key+'='+encodeURIComponent(params[key]));
  208.        var s = d.createElement('script');s.type='text/javascript';s.async=true;
  209.        var p = 'https:' == document.location.protocol ? 'https' : 'http';
  210.        s.src = p + "://api.content-ad.net/Scripts/widget2.aspx?" + qs.join('&');
  211.        d.getElementById("contentad369387").appendChild(s);
  212.    })(document);
  213. </script>
  214.                    
  215. <div id="contentad369388"></div>
  216. <script type="text/javascript">
  217.    (function(d) {
  218.        var params =
  219.        {
  220.            id: "7b41b296-5bed-4f19-bcb0-39428630f389",
  221.            d:  "b25lLXN1YmxpbWUtZGlyZWN0b3J5LmNvbQ==",
  222.            wid: "369388",
  223.            exitPop: true,
  224.            cb: (new Date()).getTime()
  225.        };
  226.  
  227.        var qs=[];
  228.        for(var key in params) qs.push(key+'='+encodeURIComponent(params[key]));
  229.        var s = d.createElement('script');s.type='text/javascript';s.async=true;
  230.        var p = 'https:' == document.location.protocol ? 'https' : 'http';
  231.        s.src = p + "://api.content-ad.net/Scripts/widget2.aspx?" + qs.join('&');
  232.        d.getElementById("contentad369388").appendChild(s);
  233.    })(document);
  234. </script>
  235.                    
  236.  
  237.  
  238. <!--Start Banner Code--><a href="http://46-directories.directoriesadvertising.com/advertising-46-directories.php" target="_blank" title="Put your 728x90 banner here"><img src="/SponsLinks/ximages/1_top_banner_7280x900.png" alt="Put your 728x90 banner here" /></a><!--End Banner Code-->
  239. <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://one-sublime-directory.com/premium-featured-links.html" onclick="window.open('http://one-sublime-directory.com/premium-featured-links.html','newwindow','width=450,height=350');return false;" ><font color=#000000><b>&raquo;&raquo; Looking for Premium Featured Links at Very Low Prices &laquo;&laquo;</b></font></a></div>
  240. </center><div class="content-wrapper"><div class="path"></div><div class="phpld-column linearize-level-1">
  241. <div class="phpld-col1"  style="width:25%;">
  242.    <div class="phpld-cbox">
  243.                    <div class="phpld-grid phpld-full phpld-widget" id="widget_12">
  244.    <div class="boxTop"></div>
  245.            <h3>Our Partners</h3>
  246.         <font color=#000000>&raquo; <a href="https://www.pokecut.com/tools/cv-photo-editor" title="AI-Powered CV Photo"><b>AI-Powered CV Photo</b></a> Effortlessly create professional cv pictures with AI</font><br /><br /><font color=#000000>&raquo; <a href="https://cuckootreadmill.com/" title="Cuckoo running machine"><b>Cuckoo running machine</b></a> Discover the Cuckoo B-Fit Treadmill for Your Active Lifestyle</font><br /><br /><br /><br />
  247. <br /><br />
  248.  
  249. <br /><br />
  250. <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 />
  251. <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 />
  252. <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 />
  253. <ul class="boxPopCats">
  254. </ul>
  255. </div>
  256.  
  257.            
  258.    </div>
  259. </div>
  260. <div class="phpld-col2"  style="width:25%;">
  261.    <div class="phpld-cbox">
  262.                    <div class="phpld-grid phpld-full phpld-widget" id="widget_11">
  263.    <div class="boxTop"></div>
  264.            <h3>Advertisement</h3>
  265.         <center>
  266. <a href="https://myescort.network" title="Independent Escorts Directory | My Escort Network"><img src="/SponsLinks/ximages/myesc-network.jpg" alt="Independent Escorts Directory | My Escort Network" width="160" height="160" /></a> <br /> <center>Find female independent female escorts</center><br /><br /><br />
  267. <!--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 />
  268.  
  269.  
  270. <div id="contentad369389"></div>
  271. <script type="text/javascript">
  272.    (function(d) {
  273.        var params =
  274.        {
  275.            id: "107493ea-25b1-4223-a5fb-b2843ba0ccc6",
  276.            d:  "b25lLXN1YmxpbWUtZGlyZWN0b3J5LmNvbQ==",
  277.            wid: "369389",
  278.            cb: (new Date()).getTime()
  279.        };
  280.  
  281.        var qs=[];
  282.        for(var key in params) qs.push(key+'='+encodeURIComponent(params[key]));
  283.        var s = d.createElement('script');s.type='text/javascript';s.async=true;
  284.        var p = 'https:' == document.location.protocol ? 'https' : 'http';
  285.        s.src = p + "://api.content-ad.net/Scripts/widget2.aspx?" + qs.join('&');
  286.        d.getElementById("contentad369389").appendChild(s);
  287.    })(document);
  288. </script>
  289.                    
  290.  
  291. <br />
  292. </center>
  293. <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 />
  294. <br />
  295. <center>
  296. <span style="background-color: #005083; color: #fff; padding: 3 6px;"><a href="http://www.free-weblink.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 />
  297. </center>
  298. <center>
  299.  
  300.  
  301. </center>
  302. </div>
  303.  
  304.            
  305.    </div>
  306. </div><div class="phpld-col3"  style="margin-left:25%;
  307.                                margin-right:25%;">
  308.  
  309.    <div class="phpld-cbox">
  310.                    
  311.                                                        <div class="phpld-grid phpld-full phpld-widget" id="widget_3">
  312.    <div class="boxTop"></div>
  313.        <div class="pageNotFound">
  314.    <div>404</div>
  315.    Page Not Found
  316. </div>
  317. </div>
  318.  
  319.                            
  320.                    
  321.                    
  322.                    
  323.                    
  324.        
  325.    </div>
  326. </div></div></div></div></div><div class="footer"><div class="footer-inner"><br>Powered By: <a href="http://www.phplinkdirectory.com" title="powered by PHP Link Directory"> PHP Link Directory </a></div></div><script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
  327. </script>
  328. <script type="text/javascript">
  329. try {
  330. _uacct = "UA-3696497-3";
  331. urchinTracker();
  332. } catch(err) {}</script>
  333.  
  334.  
  335. <script type="text/javascript">
  336.  
  337.  var _gaq = _gaq || [];
  338.  _gaq.push(['_setAccount', 'UA-31513574-3']);
  339.  _gaq.push(['_trackPageview']);
  340.  
  341.  (function() {
  342.    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  343.    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  344.    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  345.  })();
  346.  
  347. </script>
  348.  
  349.  
  350. <script type="text/javascript">
  351.  
  352.  var _gaq = _gaq || [];
  353.  _gaq.push(['_setAccount', 'UA-31513574-2']);
  354.  _gaq.push(['_trackPageview']);
  355.  
  356.  (function() {
  357.    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  358.    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  359.    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  360.  })();
  361.  
  362. </script>
  363. <script type="text/javascript">
  364.    /* <![CDATA[ */
  365.    var root = '';
  366.    
  367.    var a = document.getElementsByTagName("a");
  368.    for(i = 0; i< a.length; i++)
  369.        if(a[i].id != '')
  370.            a[i].onclick = count_link;
  371.    function count_link(event) {
  372.        i = new Image();
  373.        i.src= root+'/cl.php?id='+this.id;
  374.        return true;
  375.    }
  376.  
  377.    
  378.    /* ]]> */
  379. </script></body></html>
  380.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda