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. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>higherfrequencymag.com</title>
  5. <meta charset="UTF-8" />
  6. <meta name="description" content="" />
  7. <meta name="viewport" content="width=device-width" />
  8. <meta name='robots' content='noindex, nofollow' />
  9.  
  10. <!-- Async WordPress.com Remote Login -->
  11. <script id="wpcom_remote_login_js">
  12. var wpcom_remote_login_extra_auth = '';
  13. function wpcom_remote_login_remove_dom_node_id( element_id ) {
  14. var dom_node = document.getElementById( element_id );
  15. if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
  16. }
  17. function wpcom_remote_login_remove_dom_node_classes( class_name ) {
  18. var dom_nodes = document.querySelectorAll( '.' + class_name );
  19. for ( var i = 0; i < dom_nodes.length; i++ ) {
  20. dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
  21. }
  22. }
  23. function wpcom_remote_login_final_cleanup() {
  24. wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
  25. wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
  26. wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
  27. wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
  28. wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
  29. wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
  30. }
  31.  
  32. // Watch for messages back from the remote login
  33. window.addEventListener( "message", function( e ) {
  34. if ( e.origin === "https://r-login.wordpress.com" ) {
  35. var data = {};
  36. try {
  37. data = JSON.parse( e.data );
  38. } catch( e ) {
  39. wpcom_remote_login_final_cleanup();
  40. return;
  41. }
  42.  
  43. if ( data.msg === 'LOGIN' ) {
  44. // Clean up the login check iframe
  45. wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
  46.  
  47. var id_regex = new RegExp( /^[0-9]+$/ );
  48. var token_regex = new RegExp( /^.*|.*|.*$/ );
  49. if (
  50. token_regex.test( data.token )
  51. && id_regex.test( data.wpcomid )
  52. ) {
  53. // We have everything we need to ask for a login
  54. var script = document.createElement( "script" );
  55. script.setAttribute( "id", "wpcom_remote_login_validate" );
  56. script.src = '/remote-login.php?wpcom_remote_login=validate'
  57. + '&wpcomid=' + data.wpcomid
  58. + '&token=' + encodeURIComponent( data.token )
  59. + '&host=' + window.location.protocol
  60. + '//' + window.location.hostname
  61. + '&postid='
  62. + '&is_singular=';
  63. document.body.appendChild( script );
  64. }
  65.  
  66. return;
  67. }
  68.  
  69. // Safari ITP, not logged in, so redirect
  70. if ( data.msg === 'LOGIN-REDIRECT' ) {
  71. window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
  72. return;
  73. }
  74.  
  75. // Safari ITP, storage access failed, remove the request
  76. if ( data.msg === 'LOGIN-REMOVE' ) {
  77. 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; } }';
  78. var style_zap = document.createElement( 'style' );
  79. style_zap.type = 'text/css';
  80. style_zap.appendChild( document.createTextNode( css_zap ) );
  81. document.body.appendChild( style_zap );
  82.  
  83. var e = document.getElementById( 'wpcom_request_access_iframe' );
  84. e.parentNode.removeChild( e );
  85.  
  86. document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';
  87.  
  88. return;
  89. }
  90.  
  91. // Safari ITP
  92. if ( data.msg === 'REQUEST_ACCESS' ) {
  93. console.log( 'request access: safari' );
  94.  
  95. // Check ITP iframe enable/disable knob
  96. if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
  97. return;
  98. }
  99.  
  100. // If we are in a "private window" there is no ITP.
  101. var private_window = false;
  102. try {
  103. var opendb = window.openDatabase( null, null, null, null );
  104. } catch( e ) {
  105. private_window = true;
  106. }
  107.  
  108. if ( private_window ) {
  109. console.log( 'private window' );
  110. return;
  111. }
  112.  
  113. var iframe = document.createElement( 'iframe' );
  114. iframe.id = 'wpcom_request_access_iframe';
  115. iframe.setAttribute( 'scrolling', 'no' );
  116. iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
  117. iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );
  118.  
  119. 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; } ';
  120.  
  121. var style = document.createElement( 'style' );
  122. style.type = 'text/css';
  123. style.id = 'wpcom_request_access_styles';
  124. style.appendChild( document.createTextNode( css ) );
  125. document.body.appendChild( style );
  126.  
  127. document.body.appendChild( iframe );
  128. }
  129.  
  130. if ( data.msg === 'DONE' ) {
  131. wpcom_remote_login_final_cleanup();
  132. }
  133. }
  134. }, false );
  135.  
  136. // Inject the remote login iframe after the page has had a chance to load
  137. // more critical resources
  138. window.addEventListener( "DOMContentLoaded", function( e ) {
  139. var iframe = document.createElement( "iframe" );
  140. iframe.style.display = "none";
  141. iframe.setAttribute( "scrolling", "no" );
  142. iframe.setAttribute( "id", "wpcom_remote_login_key" );
  143. iframe.src = "https://r-login.wordpress.com/remote-login.php"
  144. + "?wpcom_remote_login=key"
  145. + "&origin=aHR0cHM6Ly9oaWdoZXJmcmVxdWVuY3ltYWcuY29t"
  146. + "&wpcomid=248081062"
  147. + "&time=1757891377";
  148. document.body.appendChild( iframe );
  149. }, false );
  150. </script>
  151. <link rel='dns-prefetch' href='//s1.wp.com' />
  152. <link rel='dns-prefetch' href='//s2.wp.com' />
  153. <link rel='dns-prefetch' href='//s0.wp.com' />
  154. <script type="text/javascript">
  155. /* <![CDATA[ */
  156. function addLoadEvent(func) {
  157. var oldonload = window.onload;
  158. if (typeof window.onload != 'function') {
  159. window.onload = func;
  160. } else {
  161. window.onload = function () {
  162. oldonload();
  163. func();
  164. }
  165. }
  166. }
  167. /* ]]> */
  168. </script>
  169. <script type="text/javascript">
  170. /* <![CDATA[ */
  171. 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"}};
  172. /*! This file is auto-generated */
  173. !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);
  174. /* ]]> */
  175. </script>
  176. <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' />
  177. <style id='wp-emoji-styles-inline-css'>
  178.  
  179. img.wp-smiley, img.emoji {
  180. display: inline !important;
  181. border: none !important;
  182. box-shadow: none !important;
  183. height: 1em !important;
  184. width: 1em !important;
  185. margin: 0 0.07em !important;
  186. vertical-align: -0.1em !important;
  187. background: none !important;
  188. padding: 0 !important;
  189. }
  190. </style>
  191. <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' />
  192. <style id='wp-block-library-inline-css'>
  193. .has-text-align-justify {
  194. text-align:justify;
  195. }
  196. .has-text-align-justify{text-align:justify;}
  197. </style>
  198. <style id='classic-theme-styles-inline-css'>
  199. /*! This file is auto-generated */
  200. .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}
  201. </style>
  202. <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' />
  203. <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' />
  204. <style id='jetpack-sharing-buttons-style-inline-css'>
  205. .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}
  206. </style>
  207. <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' />
  208. <style id='global-styles-inline-css'>
  209. :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;}
  210. :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
  211. :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
  212. :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
  213. </style>
  214. <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' />
  215. <style id='jetpack-global-styles-frontend-style-inline-css'>
  216. :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;}
  217. </style>
  218. <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' />
  219. <script type="text/javascript" id="wpcom-actionbar-placeholder-js-extra">
  220. /* <![CDATA[ */
  221. var actionbardata = {"siteID":"248081062","postID":"0","siteURL":"https:\/\/higherfrequencymag.com","xhrURL":"https:\/\/higherfrequencymag.com\/wp-admin\/admin-ajax.php","nonce":"0e323a71f5","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."}};
  222. /* ]]> */
  223. </script>
  224. <script type="text/javascript" id="jetpack-mu-wpcom-settings-js-before">
  225. /* <![CDATA[ */
  226. 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\/"};
  227. /* ]]> */
  228. </script>
  229. <script crossorigin='anonymous' type='text/javascript'  src='https://s1.wp.com/wp-content/js/rlt-proxy.js?m=1720530689i'></script>
  230. <script type="text/javascript" id="rlt-proxy-js-after">
  231. /* <![CDATA[ */
  232. rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
  233. /* ]]> */
  234. </script>
  235. <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://higherfrequencymagcom.wordpress.com/xmlrpc.php?rsd" />
  236. <meta name="generator" content="WordPress.com" />
  237. <link rel='shortlink' href='https://wp.me/gMVds' />
  238.  
  239. <!-- Jetpack Open Graph Tags -->
  240. <meta property="og:type" content="website" />
  241. <meta property="og:title" content="higherfrequencymag.com" />
  242. <meta property="og:url" content="https://higherfrequencymag.com/" />
  243. <meta property="og:site_name" content="higherfrequencymag.com" />
  244. <meta property="og:image" content="https://s0.wp.com/i/blank.jpg?m=1383295312i" />
  245. <meta property="og:image:width" content="200" />
  246. <meta property="og:image:height" content="200" />
  247. <meta property="og:image:alt" content="" />
  248. <meta property="og:locale" content="en_US" />
  249.  
  250. <!-- End Jetpack Open Graph Tags -->
  251. <link rel="shortcut icon" type="image/x-icon" href="https://s1.wp.com/i/favicon.ico?m=1713425267i" sizes="16x16 24x24 32x32 48x48" />
  252. <link rel="icon" type="image/x-icon" href="https://s1.wp.com/i/favicon.ico?m=1713425267i" sizes="16x16 24x24 32x32 48x48" />
  253. <link rel="apple-touch-icon" href="https://s2.wp.com/i/webclip.png?m=1713868326i" />
  254. <link rel="search" type="application/opensearchdescription+xml" href="https://higherfrequencymag.com/osd.xml" title="higherfrequencymag.com" />
  255. <link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
  256. <style type="text/css">
  257. .recentcomments a {
  258. display: inline !important;
  259. padding: 0 !important;
  260. margin: 0 !important;
  261. }
  262.  
  263. table.recentcommentsavatartop img.avatar, table.recentcommentsavatarend img.avatar {
  264. border: 0px;
  265. margin: 0;
  266. }
  267.  
  268. table.recentcommentsavatartop a, table.recentcommentsavatarend a {
  269. border: 0px !important;
  270. background-color: transparent !important;
  271. }
  272.  
  273. td.recentcommentsavatarend, td.recentcommentsavatartop {
  274. padding: 0px 0px 1px 0px;
  275. margin: 0px;
  276. }
  277.  
  278. td.recentcommentstextend {
  279. border: none !important;
  280. padding: 0px 0px 2px 10px;
  281. }
  282.  
  283. .rtl td.recentcommentstextend {
  284. padding: 0px 10px 2px 0px;
  285. }
  286.  
  287. td.recentcommentstexttop {
  288. border: none;
  289. padding: 0px 0px 0px 10px;
  290. }
  291.  
  292. .rtl td.recentcommentstexttop {
  293. padding: 0px 10px 0px 0px;
  294. }
  295. </style>
  296. <style type="text/css" id="random-background-css">
  297. .body {
  298. background: white url( https://s2.wp.com/wp-content/themes/a8c/domain-landing-page/img/4.jpg ) no-repeat center;
  299. background-size: cover;
  300. }
  301. </style>
  302. </head>
  303. <body class="body">
  304. <div class="container">
  305. <div class="name">higherfrequencymag.com</div>
  306. <div class="description">Something new is&nbsp;coming.</div>
  307. <div class="wp-logo"><a href="https://wordpress.com/"><img src="/wp-content/themes/a8c/domain-landing-page/wpcom-wmark-white.svg" /></a></div>
  308. </div>
  309. <!-- wpcom_wp_footer -->
  310. <script type="speculationrules">
  311. {"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"}]}
  312. </script>
  313. <script type="text/javascript" src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=202537924dcd77a86c6f1d3698ec27fc5da92b28585ddad3ee636c0397cf312193b2a1" id="grofiles-cards-js"></script>
  314. <script type="text/javascript" id="wpgroho-js-extra">
  315. /* <![CDATA[ */
  316. var WPGroHo = {"my_hash":""};
  317. /* ]]> */
  318. </script>
  319. <script crossorigin='anonymous' type='text/javascript'  src='https://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>
  320.  
  321. <script>
  322. // Initialize and attach hovercards to all gravatars
  323. ( function() {
  324. function init() {
  325. if ( typeof Gravatar === 'undefined' ) {
  326. return;
  327. }
  328.  
  329. if ( typeof Gravatar.init !== 'function' ) {
  330. return;
  331. }
  332.  
  333. Gravatar.profile_cb = function ( hash, id ) {
  334. WPGroHo.syncProfileData( hash, id );
  335. };
  336.  
  337. Gravatar.my_hash = WPGroHo.my_hash;
  338. Gravatar.init(
  339. 'body',
  340. '#wp-admin-bar-my-account',
  341. {
  342. i18n: {
  343. 'Edit your profile →': 'Edit your profile →',
  344. 'View profile →': 'View profile →',
  345. 'Contact': 'Contact',
  346. 'Send money': 'Send money',
  347. 'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
  348. 'Gravatar not found.': 'Gravatar not found.',
  349. 'Too Many Requests.': 'Too Many Requests.',
  350. 'Internal Server Error.': 'Internal Server Error.',
  351. 'Is this you?': 'Is this you?',
  352. 'Claim your free profile.': 'Claim your free profile.',
  353. 'Email': 'Email',
  354. 'Home Phone': 'Home Phone',
  355. 'Work Phone': 'Work Phone',
  356. 'Cell Phone': 'Cell Phone',
  357. 'Contact Form': 'Contact Form',
  358. 'Calendar': 'Calendar',
  359. },
  360. }
  361. );
  362. }
  363.  
  364. if ( document.readyState !== 'loading' ) {
  365. init();
  366. } else {
  367. document.addEventListener( 'DOMContentLoaded', init );
  368. }
  369. } )();
  370. </script>
  371.  
  372. <div style="display:none">
  373. </div>
  374. <div id="actionbar" dir="ltr" style="display: none;"
  375. class="actnbr-a8c-domain-landing-page actnbr-has-follow actnbr-has-actions">
  376. <ul>
  377. <li class="actnbr-btn actnbr-hidden">
  378. <a class="actnbr-action actnbr-actn-follow " href="">
  379. <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>
  380. <span>Subscribe</span>
  381. </a>
  382. <a class="actnbr-action actnbr-actn-following  no-display" href="">
  383. <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>
  384. <span>Subscribed</span>
  385. </a>
  386. <div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
  387. <div class="tip-arrow"></div>
  388. <div class="tip-inner actnbr-follow-bubble">
  389. <ul>
  390. <li class="actnbr-sitename">
  391. <a href="https://higherfrequencymag.com">
  392. <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>
  393. </li>
  394. <div class="actnbr-message no-display"></div>
  395. <form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
  396. <div>
  397. <input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
  398. </div>
  399. <input type="hidden" name="action" value="subscribe" />
  400. <input type="hidden" name="blog_id" value="248081062" />
  401. <input type="hidden" name="source" value="https://higherfrequencymag.com/" />
  402. <input type="hidden" name="sub-type" value="actionbar-follow" />
  403. <input type="hidden" id="_wpnonce" name="_wpnonce" value="3ba725d8e6" /> <div class="actnbr-button-wrap">
  404. <button type="submit" value="Sign me up">
  405. Sign me up </button>
  406. </div>
  407. </form>
  408. <li class="actnbr-login-nudge">
  409. <div>
  410. 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>
  411. </li>
  412. </ul>
  413. </div>
  414. </div>
  415. </li>
  416. <li class="actnbr-ellipsis actnbr-hidden">
  417. <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">
  418. <div class="tip-arrow"></div>
  419. <div class="tip-inner">
  420. <ul>
  421. <li class="actnbr-sitename">
  422. <a href="https://higherfrequencymag.com">
  423. <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>
  424. </li>
  425. <li class="actnbr-folded-follow">
  426. <a class="actnbr-action actnbr-actn-follow " href="">
  427. <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>
  428. <span>Subscribe</span>
  429. </a>
  430. <a class="actnbr-action actnbr-actn-following  no-display" href="">
  431. <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>
  432. <span>Subscribed</span>
  433. </a>
  434. </li>
  435. <li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
  436. <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>
  437. <li class="flb-report">
  438. <a href="https://wordpress.com/abuse/?report_url=https://higherfrequencymag.com" target="_blank" rel="noopener noreferrer">
  439. Report this content </a>
  440. </li>
  441. <li class="actnbr-reader">
  442. <a href="https://wordpress.com/reader/blogs/248081062">
  443. View site in Reader </a>
  444. </li>
  445. <li class="actnbr-subs">
  446. <a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
  447. </li>
  448. <li class="actnbr-fold"><a href="">Collapse this bar</a></li>
  449. </ul>
  450. </div>
  451. </div>
  452. </li>
  453. </ul>
  454. </div>
  455. <script>
  456. window.addEventListener( "load", function( event ) {
  457. var link = document.createElement( "link" );
  458. link.href = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?m=1750255835i&amp;v=20250116";
  459. link.type = "text/css";
  460. link.rel = "stylesheet";
  461. document.head.appendChild( link );
  462.  
  463. var script = document.createElement( "script" );
  464. script.src = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?m=1738713573i&amp;v=20250204";
  465. script.defer = true;
  466. document.body.appendChild( script );
  467. } );
  468. </script>
  469.  
  470. <script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
  471. _tkq = window._tkq || [];
  472. _stq = window._stq || [];
  473. _tkq.push(['storeContext', {'blog_id':'248081062','blog_tz':'0','user_lang':'en','blog_lang':'en','user_id':'0'}]);
  474. _stq.push(['view', {'blog':'248081062','v':'wpcom','tz':'0','user_id':'0','arch_home':'1','subd':'higherfrequencymagcom'}]);
  475. _stq.push(['extra', {'crypt':'UE5tW3cvZGRhd0REZkxVaHYvcC9lT1VJfGIwUnxZOGpLSGZSLEFXNFMzVmFyZy1ldDVdS0EvYVRKeVlLXWRldVpEfk80NEJvPSUyLkxaQnpmVjdBTXlmMU95YStHb3Q4YVRHWDBMTl8mT05oR3ZZakNWXVpCLXAmQVVFTlJORzYwakFua0l0MXAzRy0ta1JQNEdoenJdeXk3L0ZpMEFLUy5jaW0vNmNRYXU0WQ=='}]);
  476. _stq.push([ 'clickTrackerInit', '248081062', '0' ]);
  477. </script>
  478. <noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
  479. <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;}"  >
  480. <script defer src="/wp-content/js/bilmur.min.js?i=16&amp;m=202537"></script> </body>
  481. </html>
  482. <!--
  483. generated in 0.096 seconds
  484. 47343 bytes batcached for 300 seconds
  485. -->
  486.  
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda