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://Go.ivey.ca/beadvicesnet303016

  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="css/custom.css">
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <title>Ivey URL Shortener</title>
  6. <style>
  7. body {
  8. background-image: url("images/ivey_bg.jpg");
  9. background-size: cover;
  10. color:#595441;
  11. //font:16px/30px verdana,arial,sans-serif;
  12. font-family: "Segoe UI Webfont", -apple-system, "Helvetica Neue", "Lucida Grande", "Roboto", "Ebrima", "Nirmala UI", "Gadugi", "Segoe Xbox Symbol", "Segoe UI Symbol", "Meiryo UI", "Khmer UI", "Tunga", "Lao UI", "Raavi", "Iskoola Pota", "Latha", "Leelawadee", "Microsoft YaHei UI", "Microsoft JhengHei UI", "Malgun Gothic", "Estrangelo Edessa", "Microsoft Himalaya", "Microsoft New Tai Lue", "Microsoft PhagsPa", "Microsoft Tai Le", "Microsoft Yi Baiti", "Mongolian Baiti", "MV Boli", "Myanmar Text", "Cambria Math";
  13. }
  14. a, a:visited {color:#2A85B3}
  15. h1 {text-align:left; color:#0d6145}
  16. div#copybox { width:600px; height:auto;}
  17. div#sharebox {height:auto; width:600px; margin-top: 20px}
  18. </style>
  19. <script src="https://go.ivey.ca/js/jquery-3.5.1.min.js" type="text/javascript"></script>
  20. <script src="https://go.ivey.ca/js/clipboard.min.js" type="text/javascript"></script>
  21. <script src="https://go.ivey.ca/js/share.js" type="text/javascript"></script>
  22. </head>
  23.  
  24. <script>
  25. $('document').ready(function(){
  26. $('#keyword').on('input',function(){
  27. if ($(this).val().length == 0) {
  28. $('#result').text("No preview available");
  29. } else {
  30. $('#result').text("https://go.ivey.ca/" + $(this).val());
  31. }
  32. });
  33. });
  34. </script>
  35. <script>
  36. function copyOnClick() {
  37. copyToClipboard(document.getElementById("shortlink"));
  38. document.getElementById("copybtn").textContent="Copied!";
  39. setTimeout(() => { document.getElementById("copybtn").textContent="Copy URL"; }, 2000);
  40. }
  41.  
  42. function copyToClipboard(e) {
  43.    var tempItem = document.createElement('input');
  44.  
  45.    tempItem.setAttribute('type','text');
  46.    tempItem.setAttribute('display','none');
  47.    
  48.    let content = e;
  49.    if (e instanceof HTMLElement) {
  50.     content = e.innerHTML;
  51.    }
  52.    
  53.    tempItem.setAttribute('value',content);
  54.    document.body.appendChild(tempItem);
  55.    
  56.    tempItem.select();
  57.    document.execCommand('Copy');
  58.  
  59.    tempItem.parentElement.removeChild(tempItem);
  60. }
  61. </script>
  62.  
  63. <body>
  64.  
  65.  
  66. <div id="container">
  67. <img src="images/ivey_logo.jpg" height="100" alt="Ivey Logo">
  68. <div id="shortform">
  69. <h1>URL Shortener</h1>
  70. <form method="post" action="">
  71. <input type="text" name="url" placeholder="Original URL" required/><br>
  72. <span id="subtext">ex. https://acme.com/page</span><br><br>
  73. <input type="text" name="keyword" id="keyword" placeholder="Alias (leave blank for randomly generated)"/><br>
  74. <span id="subtext">ex. mypage</span><br><br>
  75. <!-- <input type="text" name="title" placeholder="Title (optional)"/><br><br> -->
  76. <h1>Preview</h1>
  77. <div id="result">No preview available</div><br>
  78. <input type="submit" value="Shorten" class="input-button"/>
  79. </form>
  80. </div>
  81. </div>
  82. </body>
  83. </html>
  84.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda