Facing this error "Missing OWASP secure headers" when building app

I have a project in PHP-laravel and wanted to integrate zoom meeting in my project. But when i’m adding redirect url i’m getting “Missing OWASP secure headers…”, i’ve added the meta header tags in my page and hasn’t worked. So i created a new html page with seperate header without using common header of the project, and added the header but still i’m facing that issue. These are the tags i’ve used":

<meta http-equiv="Strict-Transport-Security" content="max-age=31536000">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta http-equiv="Content-Security-Policy" content="default-src 'self';">
<meta name="referrer" content="strict-origin">

Please help me solve this. Thanks in advance

Can you configure these as HTTP headers (sent by your web server) instead of inline META tags? I don’t expect clients to let META tags override HTTP headers for security decisions.