Link text on SEO of Website

Hi all,

I just want to know the effect of this below link text in my website seo, will it have a effect or not,

the code is like this

<li><a href=“home.html”><div class=“jojo”>Home</div></a></li>

I know it should be :

<li><div class=“jojo”><a href=“home.html”>Home</a></div></li>

will the top line code have a bad effect on seo of the website, Please help me out guys, Thanks…

No.

No effect.

There’s other ways to do what you’re after as well you know:

<li class=“jojo”><a href=“home.html”>Home</a></li>
or
<li><a href=“home.html” class=“jojo”>Home</a></li>

:slight_smile: