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>
which better? (SEO Question)
Re: which better? (SEO Question)
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!
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)
yes, i see w*p* and it will create many and many codes in single page.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!
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:
i crate this with "styles" option.<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>
and user can use "heading" object, but with this method "heading" and "text" not put in one div
example2:
but which better? for seo? i hear this thing:<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>
"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)
I do not think it will matter which one you use as long as the order of the content is correct.