After uploading my HTML, CSS and JavaScript website online (without the use of any frameworks or libraries like React or Next), I noticed that when I searched for it on Google, the URL showed up as the website name instead (see image here).
Following the guidelines provided by Google at this link: https://developers.google.com/search/docs/appearance/site-names, I added the following meta tag to the head section of my HTML file:
<meta property="og:site_name" content="Mini Gingembre">
Even though I have multiple h1 tags with "Mini Gingembre" as their content, Google still displays the URL as the site name rather than the actual site name.
It's perplexing how Google's engine failed to properly recognize the real site name despite all these details. How can I rectify this issue?