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://qooh.me/sofapolish12

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
  2.   "http://www.w3.org/TR/html4/strict.dtd">
  3. <html lang="en">
  4. <head>
  5.    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6.        <meta property="og:title" content="Ask or tell me anything anonymously" />
  7.    <meta property="og:url" content="http://qooh.me/sofapolish12">
  8.        <meta property="og:image" content="http://qooh.me/images/facebook-share-my-link-200x200.png" />
  9.    <title>Qoohme</title>
  10.    <meta name="google-site-verification" content="q3xYLrkvuNOJxaa7d3V-9Hjzcz6IRrO2K0WlA-IMmOQ" />
  11.    
  12.    <link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico">
  13.    <link href="/css/main.css" rel="stylesheet" type="text/css" media="all">
  14.    
  15.    <script type="text/javascript" src="/js/lib/jquery-1.9.1.js"></script>
  16.    
  17.    <script type="text/javascript">
  18.        var siteName ="/";
  19.    </script>
  20. </head><body>
  21.    <script type="text/javascript">
  22.        if (false) {
  23.            window.location.href = window.location.href.replace("http://", "http://m.");
  24.        }
  25.    </script>
  26.    <script type="text/javascript" src="/scripts/jquery.colorbox.js"></script>
  27.    <div id="fb-popup-bg" class="invisible">
  28.                    <div id="facebook-popup" class="width-change">  
  29.                        <div id="popup-header">
  30.                            <div id="warning-icon"></div>
  31.                            <h3 id="facebook-popup-header"></h3>
  32.                            <input type="button" id="designed-x" onclick="return facebookDialogTemplate.hide();">
  33.                        </div>
  34.                        <div id="fb-popup-span-container">
  35.                            <span id="facebook-popup-text"></span>                  
  36.                        </div>
  37.                        <button id="fb-popup-button">Continue</button>
  38.                    </div>
  39.                </div>
  40.                <script type="text/javascript">var mobile = false</script>
  41.                <script type="text/javascript" src="https://qooh.me/js/FacebookHelper.js"></script>    <div id="wrapper">
  42.        <div id="inner">
  43.            <div id="main">
  44.                <div class="account-header"> <a href="/" class="logo"></a>
  45.                    <ul class="menu">
  46.                                                    <li><a href="/">Login</a></li>
  47.                            <li><a href="/user/sign-up/">Sign up</a></li>
  48.                        </ul></div><div class="container">                    
  49.                    <script type="text/javascript"><!--
  50. google_ad_client = "ca-pub-1046108362436506";
  51. /* header this */
  52. google_ad_slot = "3666114337";
  53. google_ad_width = 728;
  54. google_ad_height = 90;
  55. //-->
  56. </script>
  57. <div class="adbox">
  58.    <script type="text/javascript" src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
  59.    </script>
  60. </div>                </div>
  61.        
  62. <script>
  63.  
  64.    function initializeColorBox() {
  65.        $(".others").colorbox({transition:"none", width:"800px", height:"275px",initialHeight:"100", initialWidth:"100",scrolling:"false"});
  66.    }
  67.    
  68.    $(document).ready(function(){
  69.        initializeColorBox();
  70.  
  71.    });
  72.  
  73.  
  74.  
  75.    function get_more_questions()
  76.    {
  77.        var page=Number($("#btn_see_more").attr("page"))+1;
  78.        $("#btn_see_more").remove();
  79.        $("#question_list #busy_span").html('<img src="/images/ajax-loader.gif" />');
  80.        data="page="+page+"&ajax=get_questions&userid=sofapolish12";
  81.        $.ajax({
  82.            type: "POST",
  83.            url: "/processes/userprofile/index.php",
  84.            data: data,
  85.            success: function(msg){
  86.                $("#question_list #busy_span").remove();
  87.                $("#question_list").append(msg);
  88.                initializeColorBox();
  89.            }
  90.        });
  91.    }
  92.  
  93.    function post_question()
  94.    {
  95.        var question=encodeURIComponent($("#question_form #question").val());
  96.        var hp = $(".hp").val();
  97.        if(question.length>260){
  98.            $.colorbox({
  99.                html:'<p style="color:#D40D12;margin-top:30px;">Your question exceeded the limit of 260 characters.</p>',
  100.                width:'400',
  101.                height:'130',
  102.                transition:'none'
  103.            });
  104.            return false;
  105.        }
  106.        $("#question_form #busy_span").html('<img src="/images/ajax-loader.gif" />');
  107.        var data="ajax=post_question&user=" + $("#question_form input[name=user]").val()+"&question="+question+"&hp=" + hp;
  108.        $("#send").attr("disabled",true);
  109.        $.ajax({
  110.            type: "POST",
  111.            url: "/processes/userprofile/index.php",
  112.            data: data,
  113.            success: function(msg){
  114.                var sent_message=msg;
  115.                $("#question_form #busy_span").remove();
  116.                $("#question_form #question").val("");
  117.                $("#form_div").hide();
  118.                $("#question_posted_div").show();
  119.                $("#question_posted_div").html(sent_message);
  120.                $("#send").removeAttr("disabled");
  121.                update_inbox_count();
  122.            }
  123.        });
  124.        return false;
  125.    }
  126.  
  127.  
  128.    function ask_another_question()
  129.    {
  130.        $("#form_div").show();
  131.        $("#question_posted_div").hide();
  132.  
  133.    }
  134.  
  135.    function follow_me()
  136.    {
  137.        var user="sofapolish12";
  138.        data="ajax=follow_me&userid="+user;
  139.        $.ajax({
  140.            type: "POST",
  141.            url: "/processes/userprofile/index.php",
  142.            data: data,
  143.            success: function(msg){
  144.                if(msg!="false")
  145.                {
  146.                    $("#follow_span").html('<span class="unfollow_btn"><a href="javascript:unfollow_me()">Untag</a></span>');
  147.                }
  148.                else
  149.                {
  150.                    $html='<p style=\"padding-top:10px;padding-right:40px\">Please Login to tag this user<p>';
  151.                    $.colorbox({html:$html,
  152.                        transition:'none'});
  153.                }
  154.            }
  155.        });
  156.    }
  157.  
  158.    function unfollow_me()
  159.    {
  160.        var user="sofapolish12";
  161.        data="ajax=unfollow_me&userid="+user;
  162.        $.ajax({
  163.            type: "POST",
  164.            url: "/processes/userprofile/index.php",
  165.            data: data,
  166.            success: function(msg){
  167.                if(msg!="false")
  168.                {
  169.                    $("#follow_span").html('<span class="follow_btn"><a href="javascript:follow_me()">Tag</a></span>');
  170.                }
  171.                else
  172.                {
  173.                    alert("Please log in to follow this user");
  174.                }
  175.            }
  176.        });
  177.  
  178.  
  179.    }
  180.  
  181.    function deleteResponse(qid)
  182.    {
  183.        var yesno=confirm("Deleting response will move this question to your inbox. Are you sure to delete?");
  184.        if(!yesno)
  185.            return;
  186.  
  187.        data="ajax=deleteResponse&qid="+qid;
  188.        $.ajax({
  189.            type: "POST",
  190.            url: "/processes/userprofile/index.php",
  191.            data: data,
  192.            success: function(msg){
  193.                var feed_id="#question"+qid;
  194.                $(feed_id).remove();
  195.                update_inbox_count();
  196.            }
  197.        });
  198.    }
  199.  
  200.  
  201.    function likeUnlike(qid, param)
  202.    {
  203.        $("#likebtn"+qid).html('<img src="/images/ajax-loader.gif" />');
  204.        data="ajax=like_unlike&qid="+qid+"&param="+param;
  205.        $.ajax({
  206.            type: "POST",
  207.            url: "/processes/userprofile/index.php",
  208.            data: data,
  209.            success: function(msg){
  210.                if (msg === "unsuccessful") {
  211.                    window.location.href = window.location.href;
  212.                }
  213.                $("#likeunlikeinfo_"+qid).html(msg);
  214.                $("#likebtn"+qid).html('<img src="/images/ajax-loader.gif" />');
  215.                if(param == "like")
  216.                    $("#likebtn"+qid).html('<a style="float:left;"  href="javascript:likeUnlike(&quot;'+qid+'&quot;, \&quot;unlike\&quot;);" class="unlike-btn">Unlike</a>');
  217.                else
  218.                    $("#likebtn"+qid).html('<a style="float:left;"  href="javascript:likeUnlike(&quot;'+qid+'&quot;, \&quot;like\&quot;);" class="like-btn">Like</a>');
  219.                initializeColorBox();
  220.            }
  221.        });
  222.    }
  223.  
  224.  
  225.    function update_inbox_count()
  226.    {
  227.        var data="ajax=inbox_count";
  228.        $.ajax({
  229.            type: "POST",
  230.            url: "/processes/account/inbox.php",
  231.            data: data,
  232.            success: function(msg){
  233.                $("#inbox_count").html(msg);
  234.            }
  235.        });
  236.  
  237.    }
  238.  
  239.    function chageCharacterCount()
  240.    {
  241.        $count=$("#question").val().length;
  242.        $remaining=260-$count;
  243.        $("#counter").html($remaining);
  244.        if($remaining< 0){
  245.            $("#counter").attr("style","color:#D40D12;");
  246.        }
  247.        else{
  248.            $("#counter").attr("style","color:#ccc;");
  249.        }
  250.  
  251.    }
  252.  
  253. </script>
  254.  
  255. <div class="container">
  256.    <div id="content" class="page hold">
  257.        <div class="main-column">
  258.                        <div id="question_posted_div" style="display:none;">
  259.            </div>
  260.            <div id="form_div">
  261.                                                            <div class="questionTitle">
  262.                            <h2> Ask me anything you like anonymously </h2>
  263.                        </div>
  264.                        <form name="question_form"  id="question_form"  method="post" action="" class="questionForm" onsubmit="return post_question();">
  265.                            <textarea name="question" id="question"  class="required text-area" title="Please type your question" onkeyup="chageCharacterCount()"></textarea><br />
  266.                            <input type="text" name="hp" class="hp" style="width: 1px; height: 1px; border: 0px !important; float: right;">
  267.                                                        <input type="submit" name="submit" id="send" value="Send" class="submit button"/>
  268.                            <span id="busy_span"></span>
  269.                            <br />
  270.                            <input type="hidden" name="user" value="11329681" />
  271.                            <input type="hidden" name="process" value="" />
  272.                        </form>
  273.  
  274.                                                </div>
  275.            <div id="responded_question">
  276.                <div class="respond-title"><h2>Replies (0)</h2>
  277.                </div>
  278.                <div id="question_list">
  279.                                    </div>
  280.            </div>
  281.        </div>
  282.        <div class="right-column">
  283.            <script type="text/javascript">
  284.    $(document).ready(function() {
  285.        $(".view-image").colorbox({transition:"none",initialHeight:"100", initialWidth:"100",scrolling:"false"});
  286.    });
  287. </script>
  288.  
  289. <div id="sidepanel">
  290.    <div class="arrow"></div>
  291.        <div class="profile-info hold">
  292.        <div class="l rel mr5 mb5">
  293.            <!--googleoff: all-->
  294.            <img src="https://qooh.me/images/photo_default.png" height="90" width="90" onmouseover="javascript:$('#view_image_link').show();" onmouseout="javascript:$('#view_image_link').hide();">
  295.            <!--googleon: all-->
  296.            <span id="view_image_link" onmouseover="javascript:$('#view_image_link').show();" onmouseout="javascript:$('#view_image_link').hide();" style="display:none;">
  297.            <!--googleoff: all-->
  298.                <a class="view-image" href="https://qooh.me/images/photo_default.png">View image</a>
  299.            <!--googleon: all-->
  300.            </span>
  301.            <div class="c"></div>
  302.            <span id="follow_span">
  303.            <span class="follow_btn"><a href="javascript:follow_me()">Tag</a></span>            </span>
  304.        </div>
  305.        <div>
  306.            <!--googleoff: all--><h2>Richard Dissing</h2><!--googleon: all-->
  307.            <span><em>(sofapolish12)</em></span>
  308.                        <span></span>
  309.        </div>
  310.        <div class="c"></div>
  311.        <span class="url"><a href="https://www.iampsychiatry.com/anxiety-disorders" target="_blank">https://www.iampsychiatry.com/anxiety-disorders</a></span>
  312.    </div>
  313.    <script type="text/javascript"><!--
  314. google_ad_client = "ca-pub-1046108362436506";
  315. /* Sidebar2 */
  316. google_ad_slot = "7328249135";
  317. google_ad_width = 160;
  318. google_ad_height = 600;
  319. //-->
  320. </script>
  321. <div style="width: 160px; margin-left: auto; margin-right: auto;">
  322.    <script type="text/javascript" src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
  323.    </script>
  324. </div>    </div>
  325.                    </div>
  326.    </div>
  327. </div>
  328. </div>
  329. </div>
  330.  
  331. <div id="footerWrapper">
  332.    <div class="footer">
  333.        <script type="text/javascript"><!--
  334. google_ad_client = "ca-pub-1046108362436506";
  335. /* Footer */
  336. google_ad_slot = "1032866731";
  337. google_ad_width = 728;
  338. google_ad_height = 90;
  339. //-->
  340. </script>
  341. <div class="adbox">
  342.    <script type="text/javascript" src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
  343.    </script>
  344. </div>        <div id="footer-lft">
  345.            <p>&copy; 2015 Qooh.me</p>
  346.        </div>
  347.        <div id="footer-rht">
  348.            <ul class="nav">    
  349.                <li><a href="/privacy">Privacy </a></li>
  350.                <li><a href="/contact-us">Contact Us </a></li>
  351.                <li><a href="/terms">Terms</a></li>
  352.            </ul>
  353.        </div>
  354.    </div>
  355. </div>
  356. </div>
  357. <script type="text/javascript">
  358.    var _gaq = _gaq || [];
  359.    _gaq.push(['_setAccount', 'UA-23732945-1']);
  360.    _gaq.push(['_setDomainName', '.qooh.me']);
  361.    _gaq.push(['_trackPageview']);
  362.  
  363.    (function() {
  364.        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  365.        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  366.        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  367.    })();
  368. </script>
  369. </body>
  370. </html>
  371.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda