Page 1 of 1

which better? (SEO Question)

Posted: Thu Jul 22, 2021 5:35 am
by wb_user
Is there a difference for SEO?
Option 1 :
<div>
<h1>heading1</h1>
</div>
<div>
<p>paragraph</p>
</div>
<div>
<h2>heading2</h2>
</div>
<div>
<p>paragraph</p>
</div>

Option 2 :
<div>
<h1>heading1</h1>
<p>paragraph</p>
</div>
<div>
<h2>heading2</h2>
<p>paragraph</p>
</div>

Re: which better? (SEO Question)

Posted: Thu Jul 22, 2021 6:27 am
by Pablo
I am not a SEO expert, but I doubt that this will make any difference.
For example, have you ever looked looked at a WordPress HTML page? It is a complete mess. Compared to WordPres, WWB generates beautiful clean code!

Re: which better? (SEO Question)

Posted: Thu Jul 22, 2021 7:31 am
by wb_user
Pablo wrote: Thu Jul 22, 2021 6:27 am I am not a SEO expert, but I doubt that this will make any difference.
For example, have you ever looked looked at a WordPress HTML page? It is a complete mess. Compared to WordPres, WWB generates beautiful clean code!
yes, i see w*p* and it will create many and many codes in single page.
wb create very small code Compared with w*p*. but user can use "styles" for one <h1> and <p> in one div. please see this:
<div id="wb_page6Text1" dir="ltr">
<h1>Lorem ipsum </h1><br/>
<p id="wb_uid0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur sodales ligula in libero.</p></div>
</div>
i crate this with "styles" option.

and user can use "heading" object, but with this method "heading" and "text" not put in one div
example2:
<div id="wb_page6Heading1">
<h1 id="page6Heading1">Lorem ipsum</h1></div>
<div id="wb_page6Text1" dir="ltr">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur sodales ligula in libero.</p></div>
but which better? for seo? i hear this thing:
"heading must related to that paragraph"
i think about this are google can understand this, for example h1:Lorem ipsum related to his text "Lorem ipsum dolor sit amet, consectetur adipiscing elit." in example 2?

Re: which better? (SEO Question)

Posted: Thu Jul 22, 2021 9:02 am
by Pablo
I do not think it will matter which one you use as long as the order of the content is correct.