skip to Main Content

If I use nested <html> in my document like:

<html>
<body>
some text
<html>
<body>
some text
</body>
</html>

</body>
<html>

Is this put any effect on SEO of my page? Will googlebot crawl and index it or ignore it?

2

Answers


  1. For sure it will affect you SEO since its not a valid HTML and the structure of your page is totally wrong.

    First you need to remove the unnecessary tags and start with a valid HTML.

    Login or Signup to reply.
  2. As @Nadeem rightly said, your HTML is not a valid HTML so it would affect the SEO of your page. You can learn more about valid HTML at https://www.w3schools.com/html/

    Here’s a good read on webmasters.stackexchange Does excessive markup affect SEO? and this: Are deep nested HTML tags bad for SEO?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search