I'm trying to change the site name when I search it on google. the only thing that appear is "React App" and i dont know how change it
Google Search uses the following sources to automatically determine title links:
- Content in
<title>
elements - Main visual title shown on the page
- Heading elements, such as
<h1>
elements - Other content that's large and prominent through the use of style treatments
- Other text contained in the page
- Anchor text on the page
- Text within links that point to the page
Specific to your create-react-app
project: be sure to edit the actual <title></title>
element text to include the desired title (e.g. Ton Redutores
) in the file public/index.html
in your project repository (see folder structure), then re-build and re-publish your site, and keep in mind that search result updates are not instantaneous: it takes time to re-index your site.
CodePudding user response:
Make sure your <title>
tag is in the <head>
tag. Then, you just need to be patient.
<!DOCTYPE html>
<HTML>
<head>
<title>Ton Redutores</title>
</head>
<body>
<!-- Content goes here -->
</body>
</HTML>