Page layout design, we should pay attention to the details of SEO

From the search engine’s point of view, with some basic HTML code to achieve the search engine page design will be more friendly.

Suppose your site has the following two options:
1.The Left Section:usually contain navigation information, advertising, etc.Recommended
2.The Main Content Area:Site theme

In general, we are using HTML code to achieve the following:

The following is quoted:
<table width=”80%” border=”0″ cellspacing=”0″ cellpadding=”0″>
<tr>
<td>
<b> LEFT SECTION </ b> <br>
ITEM1 <br>
ITEM2 <br>
ITEM3 <br>
</ td>
<td bgcolor=”#D9BBBB” rowspan=”2″ valign=”top”>
Main Body
</ td>
</ tr>
</ table>
Note that the source code, left the region in front of the main contents of the region, therefore, in comparison, search engines may give more of the left side of the page content preference.

In order to achieve a good SEO, we need to improve the structure of the above Web Design

Solution to the problem is the use of labels Rowspan attributes.By Rowspan value is set to page 2 to be divided into two lines, the main contents of the region on the first line on the left side of regional priority, but the content was left on line 2

Web Design optimized structure of the HTML code:

The following is quoted:
<table width=”80%” border=”0″ cellspacing=”0″ cellpadding=”0″>
<tr>
<td height=”1″>
</ td>
<td bgcolor=”#D9BBBB” rowspan=”2″ valign=”top”>
Main Body
</ td>
</ tr>
<tr>
<td>
<b> LEFT SECTION </ b> <br>
ITEM1 <br>
ITEM2 <br>
ITEM3 <br>
</ td>
</ tr>
</ table>

Leave a Reply