Favicon not showing

On other pages my favicon shows however on index.html it does not show I used the code below on index.html

        <link rel="icon" type="image/png" href="/icon.png">
        <link rel="shortcut icon" type="image/png" href="/icon.png"/>
        <link href='/icon.png' rel='icon' />

A link to your site would be super helpful to check this :slightly_smiling_face:

Sure! My website is upmeet.netlify.app

The problem is because you’ve not started the document as <!doctype> instead you’ve got <doctype> (the ! is missing).

Thank You So Much That Worked!