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://naijamp3s.com

  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8" />
  6. <title>Welcome - Naija Mp3s Download</title>
  7. <meta name="description" content="Naija Mp3s is a one stop solution to Download Latest Nigeria Music. You can stream and download all Popular Music here">
  8. <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
  9. <link rel="shortcut icon" href="https://naijamp3s.com/favicon.ico">
  10. <link href="https://naijamp3s.com/themes/vibe/style.css" rel="stylesheet" type="text/css">
  11. <script type="text/javascript">baseUrl = 'https://naijamp3s.com'; token_id = '6064017ce743311586ee3f65b06bfe4c'; nowPlaying = viewed_id = 0; player_volume = 0.80; search_filter = 'https://naijamp3s.com/index.php?a=search&filter=tracks&q='; explore_filter = 'https://naijamp3s.com/index.php?a=explore&filter=';</script>
  12. <script type="text/javascript" src="https://naijamp3s.com/themes/vibe/js/jquery.js"></script>
  13. <script type="text/javascript" src="https://naijamp3s.com/themes/vibe/js/jquery.timeago.js"></script>
  14. <script type="text/javascript" src="https://naijamp3s.com/themes/vibe/js/functions.js"></script>
  15. <script type="text/javascript" src="https://naijamp3s.com/themes/vibe/js/jquery.jplayer.min.js"></script>
  16. <script type="text/javascript" src="https://naijamp3s.com/themes/vibe/js/slider.js"></script>
  17. <!-- Global site tag (gtag.js) - Google Analytics -->
  18. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-38113302-3"></script>
  19. <script>
  20.  window.dataLayer = window.dataLayer || [];
  21.  function gtag(){dataLayer.push(arguments);}
  22.  gtag('js', new Date());
  23.  
  24.  gtag('config', 'UA-38113302-3');
  25. </script>
  26.  
  27. <script type="text/javascript">
  28. $(document).ready(function() {
  29. $("#sound-player").jPlayer({
  30. cssSelectorAncestor: '#sound-container',
  31. play: function() {
  32. // Verify if a view has been added already for this track
  33. if(viewed_id == nowPlaying) {
  34. return false;
  35. } else {
  36. updateTrackInfo(nowPlaying);
  37. prevnext(3);
  38. }
  39. // Add the play count
  40. viewed_id = nowPlaying;
  41. $.ajax({
  42. type: "POST",
  43. url: "https://naijamp3s.com/requests/add_view.php",
  44. data: "id="+nowPlaying+"&token_id="+token_id,
  45. cache: false
  46. });
  47. },
  48. ended: function () {
  49. // If repeat is not turned on, move to the next song
  50. if($('#repeat-song').html() == 0) {
  51. $('.current-seek').html($('#sound_ghost_player').html());
  52. $('.current-play').show();
  53. viewed_id = 0;
  54. nextSong(nowPlaying);
  55. }
  56. },
  57. swfPath: "https://naijamp3s.com/themes/vibe/js",
  58. supplied: "mp3,m4a",
  59. wmode: "window",
  60. volume: player_volume,
  61. smoothPlayBar: true,
  62. keyEnabled: true
  63. });
  64. });
  65. function updateTrackInfo(id) {
  66. // If there's a track id
  67. if(id > 0) {
  68. // Add the current song class
  69. $('#track'+id).addClass('current-song');
  70.  
  71. // Add current play class to the Play button and hide it
  72. $('#play'+id).addClass('current-play');
  73. $('.current-play').hide();
  74.  
  75. $('.jp-audio .jp-time-holder').show();
  76.  
  77. // Add the active player to the current song
  78. $("#song-controls"+id).html($("#seek-bar-song").html());
  79.  
  80. // Add the active player class to the current song
  81. $("#song-controls"+id).addClass('current-seek');
  82.  
  83. // Set the play/pause button position (this is needed for mobile view in order for the play/pause button to be at the same height with the initial play button)
  84. $('#track'+id+' .jp-play , #track'+id+' .jp-pause').css({ 'margin-top' : '-' + $('.song-top', '#track'+id).outerHeight() + 'px' });
  85.  
  86. prevnext();
  87.  
  88. // Bind functionality to the new song selector
  89. $("#sound-player").jPlayer("option", "cssSelectorAncestor", '#sound-container');
  90. }
  91. }
  92. function playSong(song, id) {
  93. // If the user is on a mobile device, open the track in a new tab rather than playing it on the page
  94. /*if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) {
  95. window.location = 'https://naijamp3s.com/uploads/tracks/'+song;
  96. return false;
  97. }*/
  98. // Remove the current-song class (if any)
  99. $('.current-song').removeClass('current-song');
  100. // Show the previously hidden Play button (if any)
  101. $('.current-play').show();
  102. $('.current-play').removeClass('current-play');
  103. // Remove the active player if exists and set the ghost player
  104. $('.current-seek').html($('#sound_ghost_player').html());
  105. // Remove the active player class
  106. $('.current-seek').removeClass('current-seek');
  107. // Define the current playing track
  108. nowPlaying = id;
  109.  
  110. // Update the track listing
  111. updateTrackInfo(nowPlaying);
  112. prevnext(3);
  113. // Get the current song name, url and author
  114. var trackUrl = $('#song-url'+id).attr('href');
  115. var artwork = $('#song-art'+id).attr('src');
  116. var songName, shortSongName = songName = $('#song-name'+id).html();
  117. var songAuthor = $('#song-author'+id).text();
  118. var songAuthorUrl = $('#song-author'+id).attr('href');
  119. if(songName.length > 30) {
  120. var shortSongName = $('#song-name'+id).html();
  121. }
  122. $('#sw-song-name').html($('<a>', {html: shortSongName, href: trackUrl, title: songName, rel: 'loadpage'}));
  123. $('#sw-author-name').html($('<a>', {html: songAuthor, href: songAuthorUrl, title: songAuthor, rel: 'loadpage'}));
  124. $('#topbar-artwork').html($('<a>', {href: trackUrl, rel: 'loadpage', id: 'artwork-container'}));
  125. $('#artwork-container').html('<img src="'+artwork+'">');
  126. // Get the track extension
  127. var ext = getExtension(song)
  128. if(ext == 'mp3') {
  129. $("#sound-player").jPlayer("setMedia",{mp3:baseUrl+'/uploads/tracks/'+song}).jPlayer("play");
  130. } else if(ext == 'm4a') {
  131. $("#sound-player").jPlayer("setMedia",{m4a:baseUrl+'/uploads/tracks/'+song}).jPlayer("play");
  132. }
  133. }
  134. </script>
  135.  
  136. </head>
  137. <body>
  138. <div id="loading-bar"><dd></dd><dt></dt></div>
  139. <div class="topbar">
  140. <div class="header">
  141. <a href="https://naijamp3s.com/index.php?a=welcome" rel="loadpage"><div class="logo"></div></a>
  142. <a href="https://naijamp3s.com/index.php?a=explore" class="menu-button" style="display:block;" rel="loadpage" id="explore-button">Explore</a>
  143. <div class="search-input"><input type="text" id="search" placeholder="Search..." autocomplete="off"></div>
  144. <a onclick="connect_modal()" class="menu-btn" title="Connect">Connect</a>
  145. </div>
  146. <div class="search-container"></div>
  147. <div class="notification-container">
  148. <div class="notification-content">
  149. <div class="notification-inner">
  150. <span id="global_page_url"><a href="https://naijamp3s.com/index.php?a=notifications" rel="loadpage">View More Notifications</a></span>
  151. <span id="chat_page_url"><a href="https://naijamp3s.com/index.php?a=notifications&filter=chats" rel="loadpage">View More Messages</a></span>
  152. <a onclick="showNotification('close')" title="Close Notifications"><div class="close_btn"></div></a>
  153. </div>
  154. <div id="notifications-content"></div>
  155. <div class="notification-row"><div class="notification-padding"><a href="https://naijamp3s.com/index.php?a=settings&b=notifications" rel="loadpage">Notifications Settings</a></div></div>
  156. </div>
  157. </div>
  158. </div>
  159. <div class="topbar_margin"></div>
  160. <div id="content">
  161. <div class="row-welcome content-welcome1" data-type="background" data-speed="10" id="welcome-background">
  162. <div class="row-body">
  163. <div class="welcome-inner">
  164. <div class="welcome-message">
  165. <div class="welcome-title">
  166. <img src="http://naijamp3s.com/themes/vibe/images/hea5dphone_logo.png">
  167. </div>
  168. <div class="welcome-desc">
  169. share your music, connect with artists, explore new content
  170. </div>
  171. <div class="welcome-button">
  172. <a onclick="connect_modal()">Join now</a>
  173. </div>
  174. <div class="row-body slide" id="slide1">
  175. <div class="welcome-box-section">
  176. Listeners
  177. </div>
  178. <div class="welcome-box">
  179. <div class="welcome-box-title">
  180. Explore
  181. </div>
  182. <div class="welcome-box-desc">
  183. Explore new music, discover new people and engage with artists
  184. </div>
  185. </div>
  186. <div class="welcome-box">
  187. <div class="welcome-box-title">
  188. Share
  189. </div>
  190. <div class="welcome-box-desc">
  191. Share your favorite music with your friends on social networks
  192. </div>
  193. </div>
  194. <div class="welcome-box">
  195. <div class="welcome-box-title">
  196. Organize
  197. </div>
  198. <div class="welcome-box-desc">
  199. Create playlists and organize your music the way you like
  200. </div>
  201. </div>
  202. </div>
  203. <div class="row-body slide" id="slide2" style="display: none;">
  204. <div class="welcome-box-section">
  205. Creators
  206. </div>
  207. <div class="welcome-box">
  208. <div class="welcome-box-title">
  209. Upload
  210. </div>
  211. <div class="welcome-box-desc">
  212. Upload your sounds, music, podcasts to the world
  213. </div>
  214. </div>
  215. <div class="welcome-box">
  216. <div class="welcome-box-title">
  217. Audience
  218. </div>
  219. <div class="welcome-box-desc">
  220. Connect with our community and increase your audience
  221. </div>
  222. </div>
  223. <div class="welcome-box">
  224. <div class="welcome-box-title">
  225. Statistics
  226. </div>
  227. <div class="welcome-box-desc">
  228. Get to know your audience with advanced statistics
  229. </div>
  230. </div>
  231. </div>
  232. <div class="slide-bullet-container"><div class="slide-bullet slide-bullet-active" id="slide-bullet1"></div><div class="slide-bullet" id="slide-bullet2"></div></div>
  233. <div class="welcome-learn scroll_to" data-section="welcome-explore">
  234. Explore
  235. <div class="welcome-arrow animation-small-bounce"></div>
  236. </div>
  237. </div>
  238. </div>
  239. </div>
  240. </div>
  241. <div class="welcome-full" id="welcome-explore">
  242. <div class="row-body">
  243. <div class="welcome-full-section">
  244. Popular
  245. </div>
  246. </div>
  247. <div class="welcome-popular">
  248. <div id="popular-scroll">
  249. </div>
  250. </div>
  251. </div>
  252. <div class="welcome-content">
  253. <div class="row-body">
  254. <div class="welcome-box-section">
  255. Categories
  256. </div>
  257. <div class="welcome-categories">
  258. <a href="https://naijamp3s.com/index.php?a=explore&filter=classical" title="Classical" rel="loadpage">Classical</a><a href="https://naijamp3s.com/index.php?a=explore&filter=country" title="Country" rel="loadpage">Country</a><a href="https://naijamp3s.com/index.php?a=explore&filter=hip-hop" title="Hip-Hop" rel="loadpage">Hip-Hop</a><a href="https://naijamp3s.com/index.php?a=explore&filter=jazz" title="Jazz" rel="loadpage">Jazz</a><a href="https://naijamp3s.com/index.php?a=explore&filter=mixtape" title="Mixtape" rel="loadpage">Mixtape</a><a href="https://naijamp3s.com/index.php?a=explore&filter=naijavibe" title="NaijaVibe" rel="loadpage">NaijaVibe</a><a href="https://naijamp3s.com/index.php?a=explore&filter=pop" title="Pop" rel="loadpage">Pop</a><a href="https://naijamp3s.com/index.php?a=explore&filter=reggae" title="Reggae" rel="loadpage">Reggae</a><a href="https://naijamp3s.com/index.php?a=explore&filter=world" title="World" rel="loadpage">World</a>
  259. </div>
  260. </div>
  261. </div>
  262.  
  263. <center><a href="https://www.toprevenuegate.com/cvhit86gg?key=af60f1d8c733d3caaefc8b86d07edb8b"><img class="aligncenter size-full wp-image-208747" src="https://www.naijavibe.net/wp-content/uploads/2020/02/ads.gif" alt="NaijaVibe" width="260" height="50" /></a>
  264. </div>
  265. <div id="connect" style="display: none;">
  266. <div class="modal-container">
  267. <div class="modal-title" id="share-title">
  268. <div class="modal-menu-container">
  269. <div class="modal-menu-item modal-menu-item-active" id="tab-login">Login</div>
  270. <div class="modal-menu-item" id="tab-register">Register</div>
  271. <div class="modal-loading"></div>
  272. </div>
  273. </div>
  274. <div class="divider"></div>
  275. <div class="tab-login">
  276. <div id="login-message"></div>
  277. <div class="modal-inner">
  278. <form id="login-form" method="post">
  279. <div class="modal-input modal-connect">
  280. <input type="text" id="short" name="username" placeholder="Username or email">
  281. <input type="password" id="short" name="password" placeholder="Password">
  282. </div>
  283. <div class="modal-checkbox"><input type="checkbox" name="remember" value="1" id="remember-me"><label for="remember-me">Remember me</label></div>
  284. <input type="submit" style="display: none;"><!-- submit button used to enable the enter key -->
  285. </form>
  286. <div class="forgot-password"><a href="https://naijamp3s.com/index.php?a=recover" rel="loadpage">Forgot your password?</a></div>
  287. </div>
  288. <div class="divider"></div>
  289. <div class="modal-menu">
  290. <div class="modal-btn modal-btn-active"><a id="login-button" onclick="connect(1)">Login</a></div>
  291. </div>
  292. </div>
  293. <div class="tab-register">
  294. <div id="register-message"></div>
  295. <div class="modal-inner">
  296. <div class="modal-input modal-connect">
  297. <form id="register-form" method="post">
  298. <input type="text" id="short" name="username" placeholder="Username">
  299. <input type="password" id="short" name="password" placeholder="Password">
  300. <input type="text" id="short" name="email" placeholder="Email">
  301. <input type="submit" style="display: none;"><!-- submit button used to enable the enter key -->
  302. </form>
  303. </div>
  304. </div>
  305. <div class="divider"></div>
  306. <div class="modal-menu">
  307. <div class="modal-btn modal-btn-active"><a id="register-button" onclick="connect(0)">Register</a></div>
  308. </div>
  309. </div>
  310. </div>
  311. </div>
  312. <div class="modal-background"></div>
  313. <div class="row-body">
  314. <div class="footer">
  315. <div class="footer-container">
  316. <div class="footer-links">
  317. <span><a href="http://info.naijamp3s.com">Contact Us</a></span>
  318. <span><a href="http://info.naijamp3s.com/faq/">FAQ</a></span>
  319. <span><a href="https://www.naijavibe.net/">News</a></span>
  320.  
  321. </div>
  322. <div class="footer-languages">
  323. Language: <a href="https://naijamp3s.com/index.php?lang=english">English</a>
  324. </div>
  325. <div class="footer-info">
  326. Copyright &copy; 2024 Naija Mp3s. All rights reserved.
  327. </div>
  328. </div>
  329. </div>
  330. </div>
  331. <div class="bottombar">
  332. <div class="bottombar-container">
  333. <div id="sound-player" class="jp-jplayer"></div>
  334. <div id="sound-container" class="jp-audio top-player">
  335. <div class="player-nine">
  336. <div class="jp-type-single">
  337. <div class="jp-gui jp-interface">
  338. <div class="player-container-left">
  339. <a onclick="prevnext(1)" id="prev-button" class="prev-button" title="Previous track"></a>
  340. <a class="jp-play" tabindex="1" title="Play"></a>
  341. <a class="jp-pause" tabindex="1" title="Pause"></a>
  342. <a onclick="prevnext(2)" id="next-button" class="next-button" title="Next track"></a>
  343. <a class="jp-repeat" tabindex="1" title="Repeat" onclick="repeatSong(1)"></a>
  344. <a class="jp-repeat-off" tabindex="1" title="Repeat Off" onclick="repeatSong(0)"></a>
  345. <div style="display: none;" id="repeat-song">0</div>
  346. <div class="jp-current-time" id="current-time"></div>
  347. </div>
  348. <div class="player-container-middle">
  349. <div class="jp-progress">
  350. <div class="jp-seek-bar">
  351. <div class="jp-play-bar"></div>
  352. </div>
  353. </div>
  354. </div>
  355. <div class="player-container-right">
  356. <div class="jp-duration" id="duration-time"></div>
  357. <a class="jp-mute" tabindex="1" title="Mute"></a>
  358. <a class="jp-unmute" tabindex="1" title="Unmute"></a>
  359. <div class="jp-volume-bar" onclick="playerVolume()" title="Volume">
  360. <div class="jp-volume-bar-value"></div>
  361. </div>
  362. </div>
  363. </div>
  364. <div class="jp-no-solution"></div>
  365. </div>
  366. </div>
  367. <div class="player-three">
  368. <div id="topbar-track-info">
  369. <div id="topbar-artwork"></div>
  370. <div id="topbar-track-details">
  371. <div class="topbar-song-name" id="sw-song-name"></div>
  372. <div class="topbar-author-name" id="sw-author-name"></div>
  373. </div>
  374. </div>
  375. </div>
  376. </div>
  377. </div>
  378. </div>
  379. <div id="seek-bar-song" style="display: none;">
  380. <div id="sound-container" class="jp-audio">
  381. <div class="jp-type-single">
  382. <div class="jp-gui jp-interface">
  383. <a class="jp-play">&nbsp;</a><a class="jp-pause">&nbsp;</a>
  384. <div class="jp-progress">
  385. <div class="jp-seek-bar">
  386. <div class="jp-play-bar"></div>
  387. </div>
  388. </div>
  389. <div class="jp-time-holder">
  390. <div class="jp-current-time"></div>
  391. <div class="jp-duration"></div>
  392. </div>
  393. </div>
  394. </div>
  395. </div>
  396. </div>
  397. <div id="sound_ghost_player" style="display: none;"><div class="jp-audio"><div class="jp-type-single"><div class="jp-gui jp-interface"><div class="jp-progress"><div class="jp-seek-bar"><div class="jp-play-bar"></div></div></div></div></div></div></div>
  398. <script>
  399.  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  400.  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  401.  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  402.  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
  403.  
  404.  ga('create', 'UA-44858631-1', 'auto');
  405.  ga('send', 'pageview');
  406.  
  407. </script>
  408.  
  409.  
  410. </body>
  411. </html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda