How can I hide the header on a specific page?

HI,

I’m looking to hide the header on this specific page https://b32b39-5.myshopify.com/pages/influencers

thnak you

paste below code in theme.liquid before closing the body tag()
{% if page.handle == ‘influencers’ %}

.header { display: none; }

{% endif %}