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: http://411freedirectory.com/

  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>411 Free 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://411freedirectory.com';
  10.        </script>
  11.        
  12.        
  13. <link rel="stylesheet" type="text/css" href="/templates/DevXPurple/style/column.css" />
  14. <link rel="stylesheet" type="text/css" href="/templates/DevXPurple/style/form.css" />
  15. <link rel="stylesheet" type="text/css" href="/templates/DevXPurple/style/main_min.css" />
  16.        <link rel="stylesheet" type="text/css" href="/templates/DevXPurple/style/colors/default-theme.css" />
  17.         <!--[if IE 7]>
  18.   <link rel="stylesheet" type="text/css" href="/templates/DevXPurple/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.        <script type="text/javascript" src="/javascripts/jquery/jquery.wookmark.js"></script><script type="text/javascript" src="/javascripts/zeroclipboard/ZeroClipboard.js"></script>
  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="/">411 Free 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://411freedirectory.com/submit">Submit Link</a></li><li><a href="https://411freedirectory.com/latest">Latest Links</a></li><li><a href="https://411freedirectory.com/top">Top Hits</a></li><li><a href="https://411freedirectory.com/contact">Contact</a></li><li><a href="https://411freedirectory.com/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="contentad369059"></div>
  194. <script type="text/javascript">
  195.    (function(d) {
  196.        var params =
  197.        {
  198.            id: "d495d391-6945-48b4-8574-f6a3ba02e6b8",
  199.            d:  "NDExZnJlZWRpcmVjdG9yeS5jb20=",
  200.            wid: "369059",
  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("contentad369059").appendChild(s);
  210.    })(document);
  211. </script>
  212.                    
  213. <div id="contentad369060"></div>
  214. <script type="text/javascript">
  215.    (function(d) {
  216.        var params =
  217.        {
  218.            id: "97b5cda4-d11a-4e66-ba7c-487826197c42",
  219.            d:  "NDExZnJlZWRpcmVjdG9yeS5jb20=",
  220.            wid: "369060",
  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("contentad369060").appendChild(s);
  231.    })(document);
  232. </script>
  233.                    
  234.  
  235.  
  236. <!--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-->
  237. <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://abstractdirectory.net/premium-featured-links.html" onclick="window.open('http://abstractdirectory.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>
  238. </center><div class="content-wrapper"><div class="path">    <div class="breadcrumbs">
  239.            <span>
  240.            <a href="https://411freedirectory.com/">                411 Free Directory.com
  241.            </a>
  242.                    </span>
  243.            
  244.    </div>
  245. </div><div class="phpld-column linearize-level-1">
  246. <div class="phpld-col1"  style="width:25%;">
  247.    <div class="phpld-cbox">
  248.                    <div class="phpld-grid phpld-full phpld-widget" id="widget_9">
  249.    <div class="boxTop"></div>
  250.            <h3>Our Partners</h3>
  251.         <br/>
  252. <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 />
  253. <font color=#000000>&raquo; <a href="https://www.aayushie.com/" title="Chennai escorts service"><b>Chennai escorts service</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 />
  254.  
  255. <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 />
  256. <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 />
  257. <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 />
  258. <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 />
  259. <ul class="boxPopCats">
  260. </ul>
  261. </div>
  262.  
  263.            
  264.    </div>
  265. </div>
  266. <div class="phpld-col2"  style="width:25%;">
  267.    <div class="phpld-cbox">
  268.                    <div class="phpld-grid phpld-full phpld-widget" id="widget_10">
  269.    <div class="boxTop"></div>
  270.            <h3>Advertisement</h3>
  271.         <center>
  272. <br /><br />
  273. <!--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 />
  274.  
  275.  
  276. <div id="contentad369367"></div>
  277. <script type="text/javascript">
  278.    (function(d) {
  279.        var params =
  280.        {
  281.            id: "6bbc64c3-74bb-4a2c-8ded-42d74b100386",
  282.            d:  "YWJzdHJhY3RkaXJlY3RvcnkubmV0",
  283.            wid: "369367",
  284.            cb: (new Date()).getTime()
  285.        };
  286.  
  287.        var qs=[];
  288.        for(var key in params) qs.push(key+'='+encodeURIComponent(params[key]));
  289.        var s = d.createElement('script');s.type='text/javascript';s.async=true;
  290.        var p = 'https:' == document.location.protocol ? 'https' : 'http';
  291.        s.src = p + "://api.content-ad.net/Scripts/widget2.aspx?" + qs.join('&');
  292.        d.getElementById("contentad369367").appendChild(s);
  293.    })(document);
  294. </script>
  295.                    
  296.  
  297. <br />
  298. </center>
  299. <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 />
  300. <br />
  301. <center>
  302. <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 />
  303. </center>
  304. <center>
  305.  
  306.  
  307. </center>
  308. </div>
  309.  
  310.            
  311.    </div>
  312. </div><div class="phpld-col3"  style="margin-left:25%;
  313.                                margin-right:25%;">
  314.  
  315.    <div class="phpld-cbox">
  316.                                                        <div class="phpld-grid phpld-full phpld-widget" id="widget_1">
  317.    <div class="boxTop"></div>
  318.        <div class="textbox">
  319. <b><i>MAIN CONTENT</i></b>.
  320. </div>
  321.  
  322. </div>
  323.  
  324.                                                                <div class="phpld-grid phpld-full phpld-widget" id="widget_2">
  325.    <div class="boxTop"></div>
  326.        
  327.        <h3>Categories</h3>
  328.    
  329.  
  330.                        <div class="phpld-grid AllCategories">
  331.                    <div class="phpld-g50 phpld-gl ">
  332.                <div class="phpld-gbox">
  333.                    <h4><a href="https://411freedirectory.com/Arts/"   title="Arts">Arts</a><span>(971)</span></h4>
  334.                
  335.                                                                                        <ul>
  336.                                                                                                <li>
  337.                                        <a href="https://411freedirectory.com/Arts/Television/"   title="Television" class="phpld-gray" >Television</a>
  338.                                    </li>
  339.                                
  340.                                                                                                <li>
  341.                                        <a href="https://411freedirectory.com/Arts/Weblogs/"   title="Weblogs" class="phpld-gray" >Weblogs</a>
  342.                                    </li>
  343.                                
  344.                            
  345.                        </ul>
  346.                                    </div>
  347.            </div>
  348.                    <div class="phpld-g50 phpld-gl ">
  349.                <div class="phpld-gbox">
  350.                    <h4><a href="https://411freedirectory.com/Blogs/"   title="Blogs">Blogs</a><span>(1430)</span></h4>
  351.                
  352.                                                                                        <ul>
  353.                                                                                                <li>
  354.                                        <a href="https://411freedirectory.com/Blogs/Library/"   title="Library" class="phpld-gray" >Library</a>
  355.                                    </li>
  356.                                
  357.                                                                                                <li>
  358.                                        <a href="https://411freedirectory.com/Blogs/Science/"   title="Science" class="phpld-gray" >Science</a>
  359.                                    </li>
  360.                                
  361.                            
  362.                        </ul>
  363.                                    </div>
  364.            </div>
  365.                    <div class="phpld-g50 phpld-gl ">
  366.                <div class="phpld-gbox">
  367.                    <h4><a href="https://411freedirectory.com/Business/"   title="Business">Business</a><span>(16040)</span></h4>
  368.                
  369.                                                                                        <ul>
  370.                                                                                                <li>
  371.                                        <a href="https://411freedirectory.com/Business/Car_Rental/"   title="Car Rental" class="phpld-gray" >Car Rental</a>
  372.                                    </li>
  373.                                
  374.                                                                                                <li>
  375.                                        <a href="https://411freedirectory.com/Business/Chemicals/"   title="Chemicals" class="phpld-gray" >Chemicals</a>
  376.                                    </li>
  377.                                
  378.                            
  379.                        </ul>
  380.                                    </div>
  381.            </div>
  382.                    <div class="phpld-g50 phpld-gl ">
  383.                <div class="phpld-gbox">
  384.                    <h4><a href="https://411freedirectory.com/Computers/"   title="Computers">Computers</a><span>(1930)</span></h4>
  385.                
  386.                                                                                        <ul>
  387.                                                                                                <li>
  388.                                        <a href="https://411freedirectory.com/Computers/Emulators/"   title="Emulators" class="phpld-gray" >Emulators</a>
  389.                                    </li>
  390.                                
  391.                                                                                                <li>
  392.                                        <a href="https://411freedirectory.com/Computers/Home_Automation/"   title="Home Automation" class="phpld-gray" >Home Automation</a>
  393.                                    </li>
  394.                                
  395.                            
  396.                        </ul>
  397.                                    </div>
  398.            </div>
  399.                    <div class="phpld-g50 phpld-gl ">
  400.                <div class="phpld-gbox">
  401.                    <h4><a href="https://411freedirectory.com/Directories/"   title="Directories">Directories</a><span>(295)</span></h4>
  402.                
  403.                                                                                        <ul>
  404.                                                                                                <li>
  405.                                        <a href="https://411freedirectory.com/Directories/Niche_Directories/"   title="Niche Directories" class="phpld-gray" >Niche Directories</a>
  406.                                    </li>
  407.                                
  408.                                                                                                <li>
  409.                                        <a href="https://411freedirectory.com/Directories/Paid_Directories/"   title="Paid Directories" class="phpld-gray" >Paid Directories</a>
  410.                                    </li>
  411.                                
  412.                            
  413.                        </ul>
  414.                                    </div>
  415.            </div>
  416.                    <div class="phpld-g50 phpld-gl ">
  417.                <div class="phpld-gbox">
  418.                    <h4><a href="https://411freedirectory.com/Education/"   title="Education">Education</a><span>(3465)</span></h4>
  419.                
  420.                                                                                        <ul>
  421.                                                                                                <li>
  422.                                        <a href="https://411freedirectory.com/Education/Literacy/"   title="Literacy" class="phpld-gray" >Literacy</a>
  423.                                    </li>
  424.                                
  425.                                                                                                <li>
  426.                                        <a href="https://411freedirectory.com/Education/Conferences/"   title="Conferences" class="phpld-gray" >Conferences</a>
  427.                                    </li>
  428.                                
  429.                            
  430.                        </ul>
  431.                                    </div>
  432.            </div>
  433.                    <div class="phpld-g50 phpld-gl ">
  434.                <div class="phpld-gbox">
  435.                    <h4><a href="https://411freedirectory.com/Entertainment/"   title="Entertainment">Entertainment</a><span>(1091)</span></h4>
  436.                
  437.                                                                                        <ul>
  438.                                                                                                <li>
  439.                                        <a href="https://411freedirectory.com/Entertainment/Webisodes/"   title="Webisodes" class="phpld-gray" >Webisodes</a>
  440.                                    </li>
  441.                                
  442.                                                                                                <li>
  443.                                        <a href="https://411freedirectory.com/Entertainment/Weblogs/"   title="Weblogs" class="phpld-gray" >Weblogs</a>
  444.                                    </li>
  445.                                
  446.                            
  447.                        </ul>
  448.                                    </div>
  449.            </div>
  450.                    <div class="phpld-g50 phpld-gl ">
  451.                <div class="phpld-gbox">
  452.                    <h4><a href="https://411freedirectory.com/Finance/"   title="Finance">Finance</a><span>(931)</span></h4>
  453.                
  454.                                                                                        <ul>
  455.                                                                                                <li>
  456.                                        <a href="https://411freedirectory.com/Finance/Loans/"   title="Loans" class="phpld-gray" >Loans</a>
  457.                                    </li>
  458.                                
  459.                                                                                                <li>
  460.                                        <a href="https://411freedirectory.com/Finance/Insurance/"   title="Insurance" class="phpld-gray" >Insurance</a>
  461.                                    </li>
  462.                                
  463.                            
  464.                        </ul>
  465.                                    </div>
  466.            </div>
  467.                    <div class="phpld-g50 phpld-gl ">
  468.                <div class="phpld-gbox">
  469.                    <h4><a href="https://411freedirectory.com/Games/"   title="Games">Games</a><span>(540)</span></h4>
  470.                
  471.                                                                                        <ul>
  472.                                                                                                <li>
  473.                                        <a href="https://411freedirectory.com/Games/Miniatures/"   title="Miniatures" class="phpld-gray" >Miniatures</a>
  474.                                    </li>
  475.                                
  476.                                                                                                <li>
  477.                                        <a href="https://411freedirectory.com/Games/Party_Games/"   title="Party Games" class="phpld-gray" >Party Games</a>
  478.                                    </li>
  479.                                
  480.                            
  481.                        </ul>
  482.                                    </div>
  483.            </div>
  484.                    <div class="phpld-g50 phpld-gl ">
  485.                <div class="phpld-gbox">
  486.                    <h4><a href="https://411freedirectory.com/Health/"   title="Health">Health</a><span>(5542)</span></h4>
  487.                
  488.                                                                                        <ul>
  489.                                                                                                <li>
  490.                                        <a href="https://411freedirectory.com/Health/Directories/"   title="Directories" class="phpld-gray" >Directories</a>
  491.                                    </li>
  492.                                
  493.                                                                                                <li>
  494.                                        <a href="https://411freedirectory.com/Health/Employment/"   title="Employment" class="phpld-gray" >Employment</a>
  495.                                    </li>
  496.                                
  497.                            
  498.                        </ul>
  499.                                    </div>
  500.            </div>
  501.                    <div class="phpld-g50 phpld-gl ">
  502.                <div class="phpld-gbox">
  503.                    <h4><a href="https://411freedirectory.com/Home/"   title="Home">Home</a><span>(1625)</span></h4>
  504.                
  505.                                                                                        <ul>
  506.                                                                                                <li>
  507.                                        <a href="https://411freedirectory.com/Home/Emergency_Preparation/"   title="Emergency Preparation" class="phpld-gray" >Emergency Preparation</a>
  508.                                    </li>
  509.                                
  510.                                                                                                <li>
  511.                                        <a href="https://411freedirectory.com/Home/Urban_Living/"   title="Urban Living" class="phpld-gray" >Urban Living</a>
  512.                                    </li>
  513.                                
  514.                            
  515.                        </ul>
  516.                                    </div>
  517.            </div>
  518.                    <div class="phpld-g50 phpld-gl ">
  519.                <div class="phpld-gbox">
  520.                    <h4><a href="https://411freedirectory.com/Internet/"   title="Internet">Internet</a><span>(1301)</span></h4>
  521.                
  522.                                                                                        <ul>
  523.                                                                                                <li>
  524.                                        <a href="https://411freedirectory.com/Internet/Child_Safety/"   title="Child Safety" class="phpld-gray" >Child Safety</a>
  525.                                    </li>
  526.                                
  527.                                                                                                <li>
  528.                                        <a href="https://411freedirectory.com/Internet/Domain_Names/"   title="Domain Names" class="phpld-gray" >Domain Names</a>
  529.                                    </li>
  530.                                
  531.                            
  532.                        </ul>
  533.                                    </div>
  534.            </div>
  535.                    <div class="phpld-g50 phpld-gl ">
  536.                <div class="phpld-gbox">
  537.                    <h4><a href="https://411freedirectory.com/Kids_and_Teens/"   title="Kids and Teens">Kids and Teens</a><span>(151)</span></h4>
  538.                
  539.                                                                                        <ul>
  540.                                                                                                <li>
  541.                                        <a href="https://411freedirectory.com/Kids_and_Teens/International/"   title="International" class="phpld-gray" >International</a>
  542.                                    </li>
  543.                                
  544.                                                                                                <li>
  545.                                        <a href="https://411freedirectory.com/Kids_and_Teens/Teen_Life/"   title="Teen Life" class="phpld-gray" >Teen Life</a>
  546.                                    </li>
  547.                                
  548.                            
  549.                        </ul>
  550.                                    </div>
  551.            </div>
  552.                    <div class="phpld-g50 phpld-gl ">
  553.                <div class="phpld-gbox">
  554.                    <h4><a href="https://411freedirectory.com/Misc/"   title="Misc">Misc</a><span>(1814)</span></h4>
  555.                
  556.                                                                                        <ul>
  557.                                                                                                <li>
  558.                                        <a href="https://411freedirectory.com/Misc/RSS/"   title="RSS" class="phpld-gray" >RSS</a>
  559.                                    </li>
  560.                                
  561.                                                                                                <li>
  562.                                        <a href="https://411freedirectory.com/Misc/Web_Directories/"   title="Web Directories" class="phpld-gray" >Web Directories</a>
  563.                                    </li>
  564.                                
  565.                            
  566.                        </ul>
  567.                                    </div>
  568.            </div>
  569.                    <div class="phpld-g50 phpld-gl ">
  570.                <div class="phpld-gbox">
  571.                    <h4><a href="https://411freedirectory.com/News/"   title="News">News</a><span>(567)</span></h4>
  572.                
  573.                                                                                        <ul>
  574.                                                                                                <li>
  575.                                        <a href="https://411freedirectory.com/News/Extended_Coverage/"   title="Extended Coverage" class="phpld-gray" >Extended Coverage</a>
  576.                                    </li>
  577.                                
  578.                                                                                                <li>
  579.                                        <a href="https://411freedirectory.com/News/Internet_Broadcasts/"   title="Internet Broadcasts" class="phpld-gray" >Internet Broadcasts</a>
  580.                                    </li>
  581.                                
  582.                            
  583.                        </ul>
  584.                                    </div>
  585.            </div>
  586.                    <div class="phpld-g50 phpld-gl ">
  587.                <div class="phpld-gbox">
  588.                    <h4><a href="https://411freedirectory.com/Recreation/"   title="Recreation">Recreation</a><span>(165)</span></h4>
  589.                
  590.                                                                                        <ul>
  591.                                                                                                <li>
  592.                                        <a href="https://411freedirectory.com/Recreation/Fireworks/"   title="Fireworks" class="phpld-gray" >Fireworks</a>
  593.                                    </li>
  594.                                
  595.                                                                                                <li>
  596.                                        <a href="https://411freedirectory.com/Recreation/Kites/"   title="Kites" class="phpld-gray" >Kites</a>
  597.                                    </li>
  598.                                
  599.                            
  600.                        </ul>
  601.                                    </div>
  602.            </div>
  603.                    <div class="phpld-g50 phpld-gl ">
  604.                <div class="phpld-gbox">
  605.                    <h4><a href="https://411freedirectory.com/Reference/"   title="Reference">Reference</a><span>(83)</span></h4>
  606.                
  607.                                                                                        <ul>
  608.                                                                                                <li>
  609.                                        <a href="https://411freedirectory.com/Reference/Geography/"   title="Geography" class="phpld-gray" >Geography</a>
  610.                                    </li>
  611.                                
  612.                                                                                                <li>
  613.                                        <a href="https://411freedirectory.com/Reference/Libraries/"   title="Libraries" class="phpld-gray" >Libraries</a>
  614.                                    </li>
  615.                                
  616.                            
  617.                        </ul>
  618.                                    </div>
  619.            </div>
  620.                    <div class="phpld-g50 phpld-gl ">
  621.                <div class="phpld-gbox">
  622.                    <h4><a href="https://411freedirectory.com/Regional/"   title="Regional">Regional</a><span>(296)</span></h4>
  623.                
  624.                                                                                        <ul>
  625.                                                                                                <li>
  626.                                        <a href="https://411freedirectory.com/Regional/Suriname/"   title="Suriname" class="phpld-gray" >Suriname</a>
  627.                                    </li>
  628.                                
  629.                                                                                                <li>
  630.                                        <a href="https://411freedirectory.com/Regional/Sweden/"   title="Sweden" class="phpld-gray" >Sweden</a>
  631.                                    </li>
  632.                                
  633.                            
  634.                        </ul>
  635.                                    </div>
  636.            </div>
  637.                    <div class="phpld-g50 phpld-gl ">
  638.                <div class="phpld-gbox">
  639.                    <h4><a href="https://411freedirectory.com/Science/"   title="Science">Science</a><span>(211)</span></h4>
  640.                
  641.                                                                                        <ul>
  642.                                                                                                <li>
  643.                                        <a href="https://411freedirectory.com/Science/Social_Sciences/"   title="Social Sciences" class="phpld-gray" >Social Sciences</a>
  644.                                    </li>
  645.                                
  646.                                                                                                <li>
  647.                                        <a href="https://411freedirectory.com/Science/Conferences/"   title="Conferences" class="phpld-gray" >Conferences</a>
  648.                                    </li>
  649.                                
  650.                            
  651.                        </ul>
  652.                                    </div>
  653.            </div>
  654.                    <div class="phpld-g50 phpld-gl ">
  655.                <div class="phpld-gbox">
  656.                    <h4><a href="https://411freedirectory.com/Shopping/"   title="Shopping">Shopping</a><span>(2386)</span></h4>
  657.                
  658.                                                                                        <ul>
  659.                                                                                                <li>
  660.                                        <a href="https://411freedirectory.com/Shopping/Photography/"   title="Photography" class="phpld-gray" >Photography</a>
  661.                                    </li>
  662.                                
  663.                                                                                                <li>
  664.                                        <a href="https://411freedirectory.com/Shopping/Vehicles/"   title="Vehicles" class="phpld-gray" >Vehicles</a>
  665.                                    </li>
  666.                                
  667.                            
  668.                        </ul>
  669.                                    </div>
  670.            </div>
  671.                    <div class="phpld-g50 phpld-gl ">
  672.                <div class="phpld-gbox">
  673.                    <h4><a href="https://411freedirectory.com/Society/"   title="Society">Society</a><span>(506)</span></h4>
  674.                
  675.                                                                                        <ul>
  676.                                                                                                <li>
  677.                                        <a href="https://411freedirectory.com/Society/Issues/"   title="Issues" class="phpld-gray" >Issues</a>
  678.                                    </li>
  679.                                
  680.                                                                                                <li>
  681.                                        <a href="https://411freedirectory.com/Society/Military/"   title="Military" class="phpld-gray" >Military</a>
  682.                                    </li>
  683.                                
  684.                            
  685.                        </ul>
  686.                                    </div>
  687.            </div>
  688.                    <div class="phpld-g50 phpld-gl ">
  689.                <div class="phpld-gbox">
  690.                    <h4><a href="https://411freedirectory.com/Sports/"   title="Sports">Sports</a><span>(446)</span></h4>
  691.                
  692.                                                                                        <ul>
  693.                                                                                                <li>
  694.                                        <a href="https://411freedirectory.com/Sports/Organizations/"   title="Organizations" class="phpld-gray" >Organizations</a>
  695.                                    </li>
  696.                                
  697.                                                                                                <li>
  698.                                        <a href="https://411freedirectory.com/Sports/PesA/"   title="PesA" class="phpld-gray" >PesA</a>
  699.                                    </li>
  700.                                
  701.                            
  702.                        </ul>
  703.                                    </div>
  704.            </div>
  705.                    <div class="phpld-g50 phpld-gl ">
  706.                <div class="phpld-gbox">
  707.                    <h4><a href="https://411freedirectory.com/Travel/"   title="Travel">Travel</a><span>(1442)</span></h4>
  708.                
  709.                                                                                        <ul>
  710.                                                                                                <li>
  711.                                        <a href="https://411freedirectory.com/Travel/Preparation/"   title="Preparation" class="phpld-gray" >Preparation</a>
  712.                                    </li>
  713.                                
  714.                                                                                                <li>
  715.                                        <a href="https://411freedirectory.com/Travel/Property_Rentals/"   title="Property Rentals" class="phpld-gray" >Property Rentals</a>
  716.                                    </li>
  717.                                
  718.                            
  719.                        </ul>
  720.                                    </div>
  721.            </div>
  722.        
  723.    </div>
  724.  
  725. <center>
  726. <link rel="stylesheet" type="text/css" href="/SponsLinks/banner-css/link_to_premium-featured-links.css" /><div class="premium-featured-links"><a href="http://abstractdirectory.net/linkremoval.html" onclick="window.open('http://abstractdirectory.net/linkremoval.html','newwindow','width=370,height=400');return false;" ><b>For HTTPS websites or Link Removal</b></a></div><br />
  727. <br />
  728. <!--Start Banner Code--><a href="http://46-directories.directoriesadvertising.com/advertising-46-directories.php#468x60banner" target="_blank" title="advertising with 46 directories"><img src="/SponsLinks/1_banner_4680xx600.png" alt="YOUR BANNER HERE" /></a><!--End Banner Code--><br />
  729. </center>
  730. </div>
  731.  
  732.                                                                <div class="phpld-grid phpld-full phpld-widget" id="widget_11">
  733.    <div class="boxTop"></div>
  734.            <h3>Our Partners</h3>
  735.        <font color=#000000>&raquo; <a href="https://placar24.com/" title="Placar24"><b>Placar24</b></a> - Placar ao vivo, resultados em tempo real Placar24 é sua fonte confiável para acompanhar placares ao vivo de futebol, oferecendo resultados em tempo real dos campeonatos brasileiros e internacionais. Fique por dentro de cada rodada e jogo importante com atualizações online, garantindo que você esteja sempre informado sobre as últimas pontuações e acontecimentos no mundo do futebol.</font><br /><br />
  736.  
  737. </div>
  738.  
  739.                            
  740.                    
  741.                    
  742.                    
  743.                    
  744.                    
  745.        
  746.    </div>
  747. </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">
  748.    /* <![CDATA[ */
  749.    var root = '';
  750.    
  751.    var a = document.getElementsByTagName("a");
  752.    for(i = 0; i< a.length; i++)
  753.        if(a[i].id != '')
  754.            a[i].onclick = count_link;
  755.    function count_link(event) {
  756.        i = new Image();
  757.        i.src= root+'/cl.php?id='+this.id;
  758.        return true;
  759.    }
  760.  
  761.    
  762.    /* ]]> */
  763. </script></body></html>
  764.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda