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

  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <title>higherfrequencymag.com</title>
  6. <meta charset="UTF-8" />
  7. <meta name="description" content="" />
  8. <meta name="viewport" content="width=device-width" />
  9. <meta name='robots' content='noindex, nofollow' />
  10.  
  11. <!-- Async WordPress.com Remote Login -->
  12. <script id="wpcom_remote_login_js">
  13. var wpcom_remote_login_extra_auth = '';
  14. function wpcom_remote_login_remove_dom_node_id( element_id ) {
  15. var dom_node = document.getElementById( element_id );
  16. if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
  17. }
  18. function wpcom_remote_login_remove_dom_node_classes( class_name ) {
  19. var dom_nodes = document.querySelectorAll( '.' + class_name );
  20. for ( var i = 0; i < dom_nodes.length; i++ ) {
  21. dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
  22. }
  23. }
  24. function wpcom_remote_login_final_cleanup() {
  25. wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
  26. wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
  27. wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
  28. wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
  29. wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
  30. wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
  31. }
  32.  
  33. // Watch for messages back from the remote login
  34. window.addEventListener( "message", function( e ) {
  35. if ( e.origin === "https://r-login.wordpress.com" ) {
  36. var data = {};
  37. try {
  38. data = JSON.parse( e.data );
  39. } catch( e ) {
  40. wpcom_remote_login_final_cleanup();
  41. return;
  42. }
  43.  
  44. if ( data.msg === 'LOGIN' ) {
  45. // Clean up the login check iframe
  46. wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
  47.  
  48. var id_regex = new RegExp( /^[0-9]+$/ );
  49. var token_regex = new RegExp( /^.*|.*|.*$/ );
  50. if (
  51. token_regex.test( data.token )
  52. && id_regex.test( data.wpcomid )
  53. ) {
  54. // We have everything we need to ask for a login
  55. var script = document.createElement( "script" );
  56. script.setAttribute( "id", "wpcom_remote_login_validate" );
  57. script.src = '/remote-login.php?wpcom_remote_login=validate'
  58. + '&wpcomid=' + data.wpcomid
  59. + '&token=' + encodeURIComponent( data.token )
  60. + '&host=' + window.location.protocol
  61. + '//' + window.location.hostname
  62. + '&postid='
  63. + '&is_singular=';
  64. document.body.appendChild( script );
  65. }
  66.  
  67. return;
  68. }
  69.  
  70. // Safari ITP, not logged in, so redirect
  71. if ( data.msg === 'LOGIN-REDIRECT' ) {
  72. window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
  73. return;
  74. }
  75.  
  76. // Safari ITP, storage access failed, remove the request
  77. if ( data.msg === 'LOGIN-REMOVE' ) {
  78. var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
  79. var style_zap = document.createElement( 'style' );
  80. style_zap.type = 'text/css';
  81. style_zap.appendChild( document.createTextNode( css_zap ) );
  82. document.body.appendChild( style_zap );
  83.  
  84. var e = document.getElementById( 'wpcom_request_access_iframe' );
  85. e.parentNode.removeChild( e );
  86.  
  87. document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';
  88.  
  89. return;
  90. }
  91.  
  92. // Safari ITP
  93. if ( data.msg === 'REQUEST_ACCESS' ) {
  94. console.log( 'request access: safari' );
  95.  
  96. // Check ITP iframe enable/disable knob
  97. if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
  98. return;
  99. }
  100.  
  101. // If we are in a "private window" there is no ITP.
  102. var private_window = false;
  103. try {
  104. var opendb = window.openDatabase( null, null, null, null );
  105. } catch( e ) {
  106. private_window = true;
  107. }
  108.  
  109. if ( private_window ) {
  110. console.log( 'private window' );
  111. return;
  112. }
  113.  
  114. var iframe = document.createElement( 'iframe' );
  115. iframe.id = 'wpcom_request_access_iframe';
  116. iframe.setAttribute( 'scrolling', 'no' );
  117. iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
  118. iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );
  119.  
  120. var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';
  121.  
  122. var style = document.createElement( 'style' );
  123. style.type = 'text/css';
  124. style.id = 'wpcom_request_access_styles';
  125. style.appendChild( document.createTextNode( css ) );
  126. document.body.appendChild( style );
  127.  
  128. document.body.appendChild( iframe );
  129. }
  130.  
  131. if ( data.msg === 'DONE' ) {
  132. wpcom_remote_login_final_cleanup();
  133. }
  134. }
  135. }, false );
  136.  
  137. // Inject the remote login iframe after the page has had a chance to load
  138. // more critical resources
  139. window.addEventListener( "DOMContentLoaded", function( e ) {
  140. var iframe = document.createElement( "iframe" );
  141. iframe.style.display = "none";
  142. iframe.setAttribute( "scrolling", "no" );
  143. iframe.setAttribute( "id", "wpcom_remote_login_key" );
  144. iframe.src = "https://r-login.wordpress.com/remote-login.php"
  145. + "?wpcom_remote_login=key"
  146. + "&origin=aHR0cHM6Ly9oaWdoZXJmcmVxdWVuY3ltYWcuY29t"
  147. + "&wpcomid=248081062"
  148. + "&time=1757732745";
  149. document.body.appendChild( iframe );
  150. }, false );
  151. </script>
  152. <link rel='dns-prefetch' href='//s1.wp.com' />
  153. <link rel='dns-prefetch' href='//s2.wp.com' />
  154. <link rel='dns-prefetch' href='//s0.wp.com' />
  155. <script type="text/javascript">
  156. /* <![CDATA[ */
  157. function addLoadEvent(func) {
  158. var oldonload = window.onload;
  159. if (typeof window.onload != 'function') {
  160. window.onload = func;
  161. } else {
  162. window.onload = function () {
  163. oldonload();
  164. func();
  165. }
  166. }
  167. }
  168. /* ]]> */
  169. </script>
  170. <script type="text/javascript">
  171. /* <![CDATA[ */
  172. window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s2.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1751981882i&ver=6.8.2-alpha-60439"}};
  173. /*! This file is auto-generated */
  174. !function(s,n){var o,i,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),a=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===a[t]})}function u(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);for(var n=e.getImageData(16,16,1,1),a=0;a<n.data.length;a++)if(0!==n.data[a])return!1;return!0}function f(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\udedf")}return!1}function g(e,t,n,a){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):s.createElement("canvas"),o=r.getContext("2d",{willReadFrequently:!0}),i=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(function(e){i[e]=t(o,e,n,a)}),i}function t(e){var t=s.createElement("script");t.src=e,t.defer=!0,s.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",i=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){s.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+g.toString()+"("+[JSON.stringify(i),f.toString(),p.toString(),u.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"}),r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=function(e){c(n=e.data),r.terminate(),t(n)})}catch(e){}c(n=g(i,f,p,u))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
  175. /* ]]> */
  176. </script>
  177. <link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='https://s0.wp.com/_static/??-eJx1i1EKgCAQBS+ULYVEfURnWXQzQ9dwhej22WdE8H7mMQPnoUziQlygbBRJAEcDNkX0rAKy9ezUgY5AyhWoNSINeFhrIxApZ38S1jK/4F8T5O/x6EucOz3Vad0P+w0bNzha&cssminify=yes' type='text/css' media='all' />
  178. <style id='wp-emoji-styles-inline-css'>
  179.  
  180. img.wp-smiley, img.emoji {
  181. display: inline !important;
  182. border: none !important;
  183. box-shadow: none !important;
  184. height: 1em !important;
  185. width: 1em !important;
  186. margin: 0 0.07em !important;
  187. vertical-align: -0.1em !important;
  188. background: none !important;
  189. padding: 0 !important;
  190. }
  191. </style>
  192. <link crossorigin='anonymous' rel='stylesheet' id='all-css-2-1' href='https://s1.wp.com/wp-content/plugins/gutenberg-core/v20.6.0/build/block-library/style.css?m=1744959081i&cssminify=yes' type='text/css' media='all' />
  193. <style id='wp-block-library-inline-css'>
  194. .has-text-align-justify {
  195. text-align:justify;
  196. }
  197. .has-text-align-justify{text-align:justify;}
  198. </style>
  199. <style id='classic-theme-styles-inline-css'>
  200. /*! This file is auto-generated */
  201. .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
  202. </style>
  203. <link crossorigin='anonymous' rel='stylesheet' id='all-css-4-1' href='https://s1.wp.com/_static/??-eJyVzDEOgCAMQNELiQU1Jg7Gs2AlDYpAaInx9ro5O/7hfbiywhTFRYEcKvnIQPXN1RVSa0h4MOxOssVDBXunKoqK34DlDq5F5gb+LIoVH4k/vpyzGYe+03oyw/4AcmU1KQ==&cssminify=yes' type='text/css' media='all' />
  204. <link crossorigin='anonymous' rel='stylesheet' id='all-css-6-1' href='https://s2.wp.com/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5sM02efaGpoZmFkYGRuZGmQBAHPvL0Y=&cssminify=yes' type='text/css' media='all' />
  205. <style id='jetpack-sharing-buttons-style-inline-css'>
  206. .jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em}
  207. </style>
  208. <link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='https://s1.wp.com/_static/??/wp-content/mu-plugins/core-compat/wp-mediaelement.css,/wp-content/mu-plugins/wpcom-bbpress-premium-themes.css?m=1432920480j&cssminify=yes' type='text/css' media='all' />
  209. <style id='global-styles-inline-css'>
  210. :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
  211. :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
  212. :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
  213. :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
  214. </style>
  215. <link crossorigin='anonymous' rel='stylesheet' id='all-css-10-1' href='https://s1.wp.com/_static/??-eJzTLy/QTc7PK0nNK9HPLdUtyClNz8wr1i9KTcrJTwcy0/WTi5G5ekCujj52Temp+bo5+cmJJZn5eSgc3bScxMwikFb7XFtDE1NLExMLc0OTLACohS2q&cssminify=yes' type='text/css' media='all' />
  216. <style id='jetpack-global-styles-frontend-style-inline-css'>
  217. :root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
  218. </style>
  219. <link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='https://s2.wp.com/wp-content/themes/h4/global.css?m=1420737423i&cssminify=yes' type='text/css' media='all' />
  220. <script type="text/javascript" id="wpcom-actionbar-placeholder-js-extra">
  221. /* <![CDATA[ */
  222. var actionbardata = {"siteID":"248081062","postID":"0","siteURL":"https:\/\/higherfrequencymag.com","xhrURL":"https:\/\/higherfrequencymag.com\/wp-admin\/admin-ajax.php","nonce":"f41e7a60ce","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https:\/\/s0.wp.com\/wp-content\/js\/wpcom-proxy-request.js?ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/reader\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","shortLinkCopied":"Shortlink copied to clipboard."}};
  223. /* ]]> */
  224. </script>
  225. <script type="text/javascript" id="jetpack-mu-wpcom-settings-js-before">
  226. /* <![CDATA[ */
  227. var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https:\/\/s1.wp.com\/wp-content\/mu-plugins\/jetpack-mu-wpcom-plugin\/moon\/jetpack_vendor\/automattic\/jetpack-mu-wpcom\/src\/build\/"};
  228. /* ]]> */
  229. </script>
  230. <script crossorigin='anonymous' type='text/javascript'  src='https://s1.wp.com/wp-content/js/rlt-proxy.js?m=1720530689i'></script>
  231. <script type="text/javascript" id="rlt-proxy-js-after">
  232. /* <![CDATA[ */
  233. rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
  234. /* ]]> */
  235. </script>
  236. <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://higherfrequencymagcom.wordpress.com/xmlrpc.php?rsd" />
  237. <meta name="generator" content="WordPress.com" />
  238. <link rel='shortlink' href='https://wp.me/gMVds' />
  239.  
  240. <!-- Jetpack Open Graph Tags -->
  241. <meta property="og:type" content="website" />
  242. <meta property="og:title" content="higherfrequencymag.com" />
  243. <meta property="og:url" content="https://higherfrequencymag.com/" />
  244. <meta property="og:site_name" content="higherfrequencymag.com" />
  245. <meta property="og:image" content="https://s0.wp.com/i/blank.jpg?m=1383295312i" />
  246. <meta property="og:image:width" content="200" />
  247. <meta property="og:image:height" content="200" />
  248. <meta property="og:image:alt" content="" />
  249. <meta property="og:locale" content="en_US" />
  250.  
  251. <!-- End Jetpack Open Graph Tags -->
  252. <link rel="shortcut icon" type="image/x-icon" href="https://s1.wp.com/i/favicon.ico?m=1713425267i" sizes="16x16 24x24 32x32 48x48" />
  253. <link rel="icon" type="image/x-icon" href="https://s1.wp.com/i/favicon.ico?m=1713425267i" sizes="16x16 24x24 32x32 48x48" />
  254. <link rel="apple-touch-icon" href="https://s2.wp.com/i/webclip.png?m=1713868326i" />
  255. <link rel="search" type="application/opensearchdescription+xml" href="https://higherfrequencymag.com/osd.xml" title="higherfrequencymag.com" />
  256. <link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
  257. <style type="text/css">
  258. .recentcomments a {
  259. display: inline !important;
  260. padding: 0 !important;
  261. margin: 0 !important;
  262. }
  263.  
  264. table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
  265. border: 0px;
  266. margin: 0;
  267. }
  268.  
  269. table.recentcommentsavatartop a, table.recentcommentsavatarend a {
  270. border: 0px !important;
  271. background-color: transparent !important;
  272. }
  273.  
  274. td.recentcommentsavatarend, td.recentcommentsavatartop {
  275. padding: 0px 0px 1px 0px;
  276. margin: 0px;
  277. }
  278.  
  279. td.recentcommentstextend {
  280. border: none !important;
  281. padding: 0px 0px 2px 10px;
  282. }
  283.  
  284. .rtl td.recentcommentstextend {
  285. padding: 0px 10px 2px 0px;
  286. }
  287.  
  288. td.recentcommentstexttop {
  289. border: none;
  290. padding: 0px 0px 0px 10px;
  291. }
  292.  
  293. .rtl td.recentcommentstexttop {
  294. padding: 0px 10px 0px 0px;
  295. }
  296. </style>
  297. <style type="text/css" id="random-background-css">
  298. .body {
  299. background: white url( https://s2.wp.com/wp-content/themes/a8c/domain-landing-page/img/3.jpg ) no-repeat center;
  300. background-size: cover;
  301. }
  302. </style>
  303. </head>
  304. <body class="body">
  305. <div class="container">
  306. <div class="name">higherfrequencymag.com</div>
  307. <div class="description">Something new is&nbsp;coming.</div>
  308. <div class="wp-logo"><a href="https://wordpress.com/"><img src="/wp-content/themes/a8c/domain-landing-page/wpcom-wmark-white.svg" /></a></div>
  309. </div>
  310. <!-- wpcom_wp_footer -->
  311. <script type="speculationrules">
  312. {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/files\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/a8c\/domain-landing-page\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
  313. </script>
  314. <script type="text/javascript" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202537924dcd77a86c6f1d3698ec27fc5da92b28585ddad3ee636c0397cf312193b2a1" id="grofiles-cards-js"></script>
  315. <script type="text/javascript" id="wpgroho-js-extra">
  316. /* <![CDATA[ */
  317. var WPGroHo = {"my_hash":""};
  318. /* ]]> */
  319. </script>
  320. <script crossorigin='anonymous' type='text/javascript'  src='https://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>
  321.  
  322. <script>
  323. // Initialize and attach hovercards to all gravatars
  324. ( function() {
  325. function init() {
  326. if ( typeof Gravatar === 'undefined' ) {
  327. return;
  328. }
  329.  
  330. if ( typeof Gravatar.init !== 'function' ) {
  331. return;
  332. }
  333.  
  334. Gravatar.profile_cb = function ( hash, id ) {
  335. WPGroHo.syncProfileData( hash, id );
  336. };
  337.  
  338. Gravatar.my_hash = WPGroHo.my_hash;
  339. Gravatar.init(
  340. 'body',
  341. '#wp-admin-bar-my-account',
  342. {
  343. i18n: {
  344. 'Edit your profile →': 'Edit your profile →',
  345. 'View profile →': 'View profile →',
  346. 'Contact': 'Contact',
  347. 'Send money': 'Send money',
  348. 'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
  349. 'Gravatar not found.': 'Gravatar not found.',
  350. 'Too Many Requests.': 'Too Many Requests.',
  351. 'Internal Server Error.': 'Internal Server Error.',
  352. 'Is this you?': 'Is this you?',
  353. 'Claim your free profile.': 'Claim your free profile.',
  354. 'Email': 'Email',
  355. 'Home Phone': 'Home Phone',
  356. 'Work Phone': 'Work Phone',
  357. 'Cell Phone': 'Cell Phone',
  358. 'Contact Form': 'Contact Form',
  359. 'Calendar': 'Calendar',
  360. },
  361. }
  362. );
  363. }
  364.  
  365. if ( document.readyState !== 'loading' ) {
  366. init();
  367. } else {
  368. document.addEventListener( 'DOMContentLoaded', init );
  369. }
  370. } )();
  371. </script>
  372.  
  373. <div style="display:none">
  374. </div>
  375. <div id="actionbar" dir="ltr" style="display: none;"
  376. class="actnbr-a8c-domain-landing-page actnbr-has-follow actnbr-has-actions">
  377. <ul>
  378. <li class="actnbr-btn actnbr-hidden">
  379. <a class="actnbr-action actnbr-actn-follow " href="">
  380. <svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
  381. <span>Subscribe</span>
  382. </a>
  383. <a class="actnbr-action actnbr-actn-following  no-display" href="">
  384. <svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
  385. <span>Subscribed</span>
  386. </a>
  387. <div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
  388. <div class="tip-arrow"></div>
  389. <div class="tip-inner actnbr-follow-bubble">
  390. <ul>
  391. <li class="actnbr-sitename">
  392. <a href="https://higherfrequencymag.com">
  393. <img loading='lazy' alt='' src='https://s2.wp.com/i/logo/wpcom-gray-white.png?m=1479929237i' srcset='https://s2.wp.com/i/logo/wpcom-gray-white.png 1x' class='avatar avatar-50' height='50' width='50' /> higherfrequencymag.com </a>
  394. </li>
  395. <div class="actnbr-message no-display"></div>
  396. <form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
  397. <div>
  398. <input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
  399. </div>
  400. <input type="hidden" name="action" value="subscribe" />
  401. <input type="hidden" name="blog_id" value="248081062" />
  402. <input type="hidden" name="source" value="https://higherfrequencymag.com/" />
  403. <input type="hidden" name="sub-type" value="actionbar-follow" />
  404. <input type="hidden" id="_wpnonce" name="_wpnonce" value="f6ce0256cc" /> <div class="actnbr-button-wrap">
  405. <button type="submit" value="Sign me up">
  406. Sign me up </button>
  407. </div>
  408. </form>
  409. <li class="actnbr-login-nudge">
  410. <div>
  411. Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fhigherfrequencymag.com">Log in now.</a> </div>
  412. </li>
  413. </ul>
  414. </div>
  415. </div>
  416. </li>
  417. <li class="actnbr-ellipsis actnbr-hidden">
  418. <svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg> <div class="actnbr-popover tip tip-top-left actnbr-more">
  419. <div class="tip-arrow"></div>
  420. <div class="tip-inner">
  421. <ul>
  422. <li class="actnbr-sitename">
  423. <a href="https://higherfrequencymag.com">
  424. <img loading='lazy' alt='' src='https://s2.wp.com/i/logo/wpcom-gray-white.png?m=1479929237i' srcset='https://s2.wp.com/i/logo/wpcom-gray-white.png 1x' class='avatar avatar-50' height='50' width='50' /> higherfrequencymag.com </a>
  425. </li>
  426. <li class="actnbr-folded-follow">
  427. <a class="actnbr-action actnbr-actn-follow " href="">
  428. <svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
  429. <span>Subscribe</span>
  430. </a>
  431. <a class="actnbr-action actnbr-actn-following  no-display" href="">
  432. <svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
  433. <span>Subscribed</span>
  434. </a>
  435. </li>
  436. <li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
  437. <li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fhigherfrequencymag.com">Log in</a></li>
  438. <li class="flb-report">
  439. <a href="https://wordpress.com/abuse/?report_url=https://higherfrequencymag.com" target="_blank" rel="noopener noreferrer">
  440. Report this content </a>
  441. </li>
  442. <li class="actnbr-reader">
  443. <a href="https://wordpress.com/reader/blogs/248081062">
  444. View site in Reader </a>
  445. </li>
  446. <li class="actnbr-subs">
  447. <a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
  448. </li>
  449. <li class="actnbr-fold"><a href="">Collapse this bar</a></li>
  450. </ul>
  451. </div>
  452. </div>
  453. </li>
  454. </ul>
  455. </div>
  456. <script>
  457. window.addEventListener( "load", function( event ) {
  458. var link = document.createElement( "link" );
  459. link.href = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?m=1750255835i&amp;v=20250116";
  460. link.type = "text/css";
  461. link.rel = "stylesheet";
  462. document.head.appendChild( link );
  463.  
  464. var script = document.createElement( "script" );
  465. script.src = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?m=1738713573i&amp;v=20250204";
  466. script.defer = true;
  467. document.body.appendChild( script );
  468. } );
  469. </script>
  470.  
  471. <script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
  472. _tkq = window._tkq || [];
  473. _stq = window._stq || [];
  474. _tkq.push(['storeContext', {'blog_id':'248081062','blog_tz':'0','user_lang':'en','blog_lang':'en','user_id':'0'}]);
  475. _stq.push(['view', {'blog':'248081062','v':'wpcom','tz':'0','user_id':'0','arch_home':'1','subd':'higherfrequencymagcom'}]);
  476. _stq.push(['extra', {'crypt':'UE5tW3cvZGRhd0REZkxVaHYvcC9lT1VJfGIwUnxZOGpLSGZSLEFXNFMzVmFyZy1ldDVdS0EvYVRKeVlLXWRldVpEfk82Z3o0NDAwdTRtL1JBc0RMc0czQ2psUC9VK3VySit8MSU9ZFVfcHkzXy1FYyZEbVRtRC5JPWxjVXpLX3d3YzM1dzE1VS40Tm9CW3pPeEtmbFtaVU45TWdvMyVxaUplXXY4Nj9iOEslbQ=='}]);
  477. _stq.push([ 'clickTrackerInit', '248081062', '0' ]);
  478. </script>
  479. <noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
  480. <meta id="bilmur" property="bilmur:data" content="" data-provider="wordpress.com" data-service="simple" data-site-tz="Etc/GMT-0" data-custom-props="{&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;a8c\/domain-landing-page&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}"  >
  481. <script defer src="/wp-content/js/bilmur.min.js?i=16&amp;m=202537"></script> </body>
  482. </html>
  483.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda