which better? (SEO Question)

This section is for posting questions which are not directly related to WYSIWYG Web Builder.
Examples of off topics: web server configuration, hosting, programming related questions, third party scripts.

Note that these questions will generally not be answered by the administrators of this forum.
Post Reply
wb_user
 
 
Posts: 1099
Joined: Sun Jul 05, 2015 7:03 am

which better? (SEO Question)

Post 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>
User avatar
Pablo
 
Posts: 21574
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: which better? (SEO Question)

Post 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!
wb_user
 
 
Posts: 1099
Joined: Sun Jul 05, 2015 7:03 am

Re: which better? (SEO Question)

Post 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?
User avatar
Pablo
 
Posts: 21574
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: which better? (SEO Question)

Post by Pablo »

I do not think it will matter which one you use as long as the order of the content is correct.
Post Reply