Mobile app version of vmapp.org
Login or Join
Gail5422790

: Does crowded HTML markup between actual content affect SEO? On our pages the content consists of multiple entries (similar to forums) and those entries have lots of html such as three social

@Gail5422790

Posted in: #Html #SearchEngines #Seo

On our pages the content consists of multiple entries (similar to forums) and those entries have lots of html such as three social share widgets, like buttons, favorite buttons and so on. When you look at the source of the page, what seems on browser as two consecutive blocks of entry, is seen as one entry then thousands of html (they include text such as "share on xxx") and an entry again.

This is the human perception, but is it also a problem for search engines? Particularly Google.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Gail5422790

2 Comments

Sorted by latest first Latest Oldest Best

 

@Sent6035632

Crowded markup is advantageous these days for a couple of reasons:


Anyone who wants to steal part of your code to make it their own will have a harder time doing so when all the HTML is crowded together as one instead of html with nice comments between blocks of code.
The amount of bytes required for crowding your HTML is often less than that of pretty looking HTML since spaces, comments, and the carriage return sequence take up extra bytes.


The fewer bytes your HTML is, the faster your page is downloaded and the less stress there is on the server.

What I suggest is to cram your HTML code together while still making the code run the same way. For example. Change:

<!-- Start a pretty looking box -->
<div ID="oneprettybox">
<p>This is a pretty box</p>
<p>with some text</p>
<a href="http://sharer.com">
Share the text
</a>
</div>
<!-- end pretty box -->


to this:

<div ID="box"><p>This is a pretty box</p><p>with some text</p><a href="http://sharer.com">Share the text</a></div>


and you'll notice fewer bytes are downloaded and the overall loading experience will be better.

10% popularity Vote Up Vote Down


 

@LarsenBagley505

Crowded markup is not a huge issue these days. Once long ago it was considered a sign of a badly designed site and Google acted accordingly but these days with the rise of dynamic interactive database driven websites and rich user interfaces Google has stopped ranking based on HTML clutter. As long as all the HTML is not causing really long page load times then you should have no issue.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme