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://addbase.co.kr

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5.    <title>Mycall</title>
  6.    <meta charset="utf-8">
  7.    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  8.    <meta name="robots" content="noindex,nofollow" />
  9.    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
  10.    <link rel="stylesheet" type="text/css" href="https://addbase.co.kr/res/lia/lia.css" charset="utf-8" />
  11.    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
  12.    <link rel="stylesheet" href="https://code.jquery.com/ui/1.8.18/themes/base/jquery-ui.css" type="text/css" />
  13.    <script src="https://addbase.co.kr/res/lia/vendor/jquery-1.11.0.min.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  14.    <script src="https://addbase.co.kr/res/js/jquery-ui.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  15.    <script src="https://addbase.co.kr/res/lia/vendor/jquery.cookie.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  16.    <script src="https://addbase.co.kr/res/lia/lia.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  17.    <script src="https://addbase.co.kr/res/lia/lia.button.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  18.    <script src="https://addbase.co.kr/res/lia/lia.imagebutton.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  19.    <script src="https://addbase.co.kr/res/lia/lia.flatbutton.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  20.    <script src="https://addbase.co.kr/res/lia/lia.imagebox.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  21.    <script src="https://addbase.co.kr/res/lia/lia.button.group.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  22.    <script src="https://addbase.co.kr/res/lia/lia.popup.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  23.    <script src="https://addbase.co.kr/res/js/constants.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  24.    <!--[if lt IE 9]>
  25. <script src="https://addbase.co.kr/res/js/placeholder.min.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  26. <![endif]-->
  27. <!--[if lt IE 10]>
  28. <script src="https://addbase.co.kr/res/js/placeholder.min.js" type="text/javascript" language="javascript" charset="utf-8"></script>
  29. <![endif]-->
  30.    <script>
  31.  
  32.        var GCM_TYPE_AD_ENABLED = 1;
  33.        var GCM_TYPE_MESSAGE = 2;
  34.  
  35.        var RESULT_CODE_SUCCESS = 10000;
  36.        var RESULT_CODE_DB_ERROR = 20000;
  37.        var RESULT_CODE_INVALID_PARAMETER = 20001;
  38.        var RESULT_CODE_PERMISSION_ERROR = 20002;
  39.        var RESULT_CODE_NO_USE = 20003;
  40.  
  41.        var CHECK_IMAGE_PATH = 'https://addbase.co.kr/res/img/admin/img_apply.png';
  42.        var UNCHECK_IMAGE_PATH = 'https://addbase.co.kr/res/img/admin/img_noapply.png';
  43.  
  44.        var IMAGE_CHECK_IMAGE_PATH = 'https://addbase.co.kr/res/img/admin/img_apply.png';
  45.        var IMAGE_UNCHECK_IMAGE_PATH = 'https://addbase.co.kr/res/img/admin/img_noapply.png';
  46.  
  47.        function getTrueFalseString(yseno)
  48.        {
  49.            return (yseno=='Y')?'O':'X';
  50.        }
  51.  
  52.        // function checkByteString(expression)
  53.        // {
  54.        //     var vLength=0;
  55.        //     var temp = expression;
  56.        //     var escTemp;
  57.        //     if(temp!="" & temp !=null)
  58.        //     {
  59.        //         for(var i=0;i<temp.length;i++)
  60.        //         {
  61.        //             if (temp.charAt(i)!=encodeURIComponent(temp.charAt(i)))
  62.        //             {
  63.        //                 escTemp=encodeURIComponent(temp.charAt(i));
  64.        //                 if (escTemp.length>=6)
  65.        //                     vLength+=2;
  66.        //                 else
  67.        //                     vLength+=1;
  68.        //             }
  69.        //             else
  70.        //                 vLength+=1;
  71.        //         }
  72.        //     }
  73.        //     return vLength;
  74.        // }
  75.        function checkByteString(expression) {
  76.            let vLength = 0;
  77.            if (expression !== "" && expression !== null) {
  78.                for (let i = 0; i < expression.length; i++) {
  79.                    const codePoint = expression.codePointAt(i);
  80.                    if (codePoint > 0xFFFF) {
  81.                        // 4바이트 문자일 경우
  82.                        vLength += 4;
  83.                        i++; // 다음 서로게이트 쌍 건너뛰기
  84.                    } else if (codePoint > 0x7FF) {
  85.                        // 3바이트 문자일 경우
  86.                        vLength += 3;
  87.                    } else if (codePoint > 0x7F) {
  88.                        // 2바이트 문자일 경우
  89.                        vLength += 2;
  90.                    } else {
  91.                        // 1바이트 문자일 경우 (ASCII 문자)
  92.                        vLength += 1;
  93.                    }
  94.                }
  95.            }
  96.            return vLength;
  97.        }
  98.  
  99.    </script>
  100.    <style type="text/css">
  101.  
  102.        @font-face {
  103.            font-family: 'NanumGothic';
  104.  
  105.            font-style: normal;
  106.            font-weight: normal;
  107.            src: local('NanumGothic'),  local('나눔고딕'),   url('https://addbase.co.kr/res/font/NanumGothic.woff') format('woff');
  108.        }
  109.  
  110.        @font-face {
  111.            font-family: 'NanumGothicBold';
  112.  
  113.            font-style: normal;
  114.            font-weight: bold;
  115.            src: local('NanumGothicBold'),   url('https://addbase.co.kr/res/font/NanumGothicBold.woff') format('woff');
  116.  
  117.        }
  118.  
  119.        body {
  120.            font-family: 'NanumGothic', dotum;
  121.            font-size:13px;
  122.            line-height:16px;
  123.            color:#111111;
  124.        }
  125.  
  126.        .font_bold {
  127.            font-family: 'NanumGothicBold', dotum;
  128.            font-weight: bold;
  129.        }
  130.  
  131.        .font_normal {
  132.            font-family: 'NanumGothic', dotum;
  133.        }
  134.  
  135.        .header_table {
  136.            border-top:2px solid #726251;
  137.            background:#cfc7c3;
  138.            color:#111111;
  139.            height:54px;
  140.        }
  141.  
  142.        table {
  143.            border-collapse:collapse;
  144.        }
  145.  
  146.        input {
  147.            border:0px solid #d9d9d9;margin:0px;color:#111111;
  148.        }
  149.  
  150.        select {
  151.            border:1px solid #d9d9d9;color:#111111;
  152.        }
  153.  
  154.        textarea {
  155.            color:#000000;
  156.            border-top:0px solid #d9d9d9;
  157.            border-bottom:1px solid #d9d9d9;
  158.            border-left:1px solid #d9d9d9;
  159.            border-right:1px solid #d9d9d9;
  160.            background:#ffffff;
  161.            resize:none;
  162.        }
  163.  
  164.        .header_table tr td {
  165.  
  166.            border-left:1px solid #b7aeaa;
  167.            border-top:1px solid #b7aeaa;
  168.            text-align:center;
  169.        }
  170.  
  171.        .header_table tr td:first-child{border-left:0;}
  172.  
  173.        .header_table tr:first-child td{border-top:0;}
  174.  
  175.        .list_table {
  176.            width:100%;
  177.        }
  178.        .list_table tr td {
  179.  
  180.            border-left:1px solid #ece7e5;
  181.            border-bottom:1px solid #ece7e5;
  182.            text-align:center;
  183.            height:43px;
  184.        }
  185.  
  186.        .list_table tr td:first-child{border-left:0;}
  187.  
  188.  
  189.    </style>
  190. </head>
  191. <body>
  192.  
  193. <div id="wrapper">
  194.  
  195.    <img id="background" src="https://addbase.co.kr/res/img/admin/bg.png" style="position:fixed;width:100%;height:100%;"/>
  196.    <div id="contents" style="position:absolute;left:0px;top:0px;width:100%;height:100%;">
  197. <script type="text/javascript">
  198.    function login()
  199.    {
  200.        saveCookie();
  201.  
  202.        $.ajax(
  203.            {
  204.                type: 'post',
  205.                url: 'https://addbase.co.kr/members_request/login',
  206.                dataType: 'json',
  207.                data : {
  208.                    'id' : $('#id_input').val(),
  209.                    'password' : $('#password_input').val()
  210.                },
  211.                error: function(xhr, option, error)
  212.                {
  213.                    alert('Error : ' + error);
  214.                },
  215.                success:function(data)
  216.                {
  217.                    if ( data == null )
  218.                    {
  219.                        alert('Error');
  220.                        return;
  221.                    }
  222.  
  223.                    var code = data[Constants.NODE_CODE];
  224.                    if ( code != Constants.CODE_SUCCESS )
  225.                    {
  226.                        alert('Error : ' + code);
  227.                        return;
  228.                    }
  229.  
  230.                    var level = data['level'];
  231.                    if (level >= 4)
  232.                     location.href='https://addbase.co.kr/cms/accounts';
  233.                    else
  234.                     location.href='https://addbase.co.kr/';
  235.  
  236.                }
  237.            });
  238.    }
  239.  
  240.    $(document).ready(function()
  241.    {
  242.        $('#id_input').keyup( function(e) {
  243.            if(e.keyCode == KEY_CODE_ENTER)
  244.                $('#password_input').focus();
  245.        });
  246.  
  247.        $('#password_input').keyup( function(e) {
  248.            if(e.keyCode == KEY_CODE_ENTER)
  249.                login();
  250.        });
  251.  
  252.        $('#login_button').click(function()
  253.        {
  254.            login();
  255.        });
  256.  
  257.        $('#id_input').focus();
  258.  
  259.        $(window).resize(function(){
  260.            onResize();
  261.        });
  262.        $('img').load(function() {
  263.            onResize();
  264.        });
  265.  
  266.        onResize();
  267.  
  268.        loadCookie();
  269.  
  270.    });
  271.  
  272.    function saveCookie()
  273.    {
  274.        if(  $('#id_save_input').is(':checked') )
  275.            $.cookie('id', $('#id_input').val() );
  276.        else
  277.            $.removeCookie('id');
  278.  
  279.        if(  $('#password_save_input').is(':checked') )
  280.            $.cookie('pw', $('#password_input').val() );
  281.        else
  282.            $.removeCookie('pw');
  283.    }
  284.  
  285.    function loadCookie()
  286.    {
  287.        var id = $.cookie('id');
  288.        if ( !String.isNullOrWhitespace(id) )
  289.        {
  290.            $('#id_save_input').attr('checked', 'true');
  291.            $('#id_input').val(id);
  292.        }
  293.  
  294.        var pw = $.cookie('pw');
  295.        if ( !String.isNullOrWhitespace(pw) )
  296.        {
  297.            $('#password_save_input').attr('checked', 'true');
  298.            $('#password_input').val(pw);
  299.        }
  300.    }
  301.  
  302.    function onResize()
  303.    {
  304.        var windowHeight = $(window).height();
  305.        $('#login').height(windowHeight);
  306.        $('#login_background').height(windowHeight);
  307.  
  308.        var jLoginContainer = $('#login_container');
  309.        var loginHeight = jLoginContainer.height();
  310.        jLoginContainer.css('top', ( (windowHeight - loginHeight)/2 - 100 ) + 'px');
  311.    }
  312. </script>
  313. <style type="text/css">
  314.  
  315.    body {
  316.        color:#cfb9a5;
  317.    }
  318.  
  319.    #login_form > div {
  320.        display:block;
  321.        overflow:auto;
  322.    }
  323.  
  324.    #login_form span {
  325.        text-align: right;
  326.        width:160px;
  327.        padding-right:18px;
  328.        float:left;
  329.        line-height:30px;
  330.        font-size:14px;
  331.    }
  332.  
  333.    #login_form .input {
  334.        float:left;
  335.        height:30px;
  336.        padding-left:10px;
  337.        margin:0px;
  338.        width:185px;
  339.    }
  340.  
  341.  
  342.    #login_form .checkbox {
  343.        float:left;
  344.        height:30px;
  345.        margin-left:10px;
  346.    }
  347.  
  348.    a:link {text-decoration: none; color: #cfb9a5;}
  349.    a:visited {text-decoration: none; color: #cfb9a5;}
  350.    a:active {text-decoration: none; color: #cfb9a5;}
  351.    a:hover {text-decoration: underline; color: #cfb9a5;}
  352.  
  353. </style>
  354. <div id="login" class="center" style="width:500px;">
  355.  
  356.    <div id="login_background" style="position:absolute;background:#001d4f;opacity:0.5;width:500px;"></div>
  357.  
  358.    <div id="login_container" style="position:absolute;width:500px;">
  359.        <div style="text-align: center;">
  360.            <img src="https://addbase.co.kr/res/img/admin/img_title.png"/>
  361.        </div>
  362.  
  363.        <div id="login_form">
  364.            <div style="margin-top:54px;">
  365.                <span class="inline_block font_bold">ID</span><input type="text" class="form-control" id="id_input" style="width:200px;display: inline" /><input type="checkbox" id="id_save_input" style="margin-left:20px;" />
  366.            </div>
  367.            <div style="margin-top:18px;">
  368.                <span class="inline_block font_bold">Password</span><input type="password" class="form-control" id="password_input" style="width:200px;display: inline" /><input type="checkbox" id="password_save_input" style="margin-left:20px;"/>
  369.            </div>
  370.            <div style="margin-top:20px;"><img id="login_button" class="image_button" style="position:relative;left:158px;" src="https://addbase.co.kr/res/img/admin/btn_login.png" /></div>
  371.        </div>
  372.  
  373.        <div style="text-align: center;margin-top:30px;" class="center">
  374.            <a href="https://addbase.co.kr/text/terms_of_use" target="_blank" ><span style="margin-right:0px;">이용약관</span></a>
  375.            <a href="https://addbase.co.kr/text/privacy_policy" target="_blank" ><span>개인정보 보호방침</span></a>
  376.        </div>
  377.  
  378.    </div>
  379.  
  380.  
  381.  
  382. </div>
  383.    </div>
  384. </div>
  385.  
  386.  
  387.  
  388. </body>
  389. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda