Free articles
Google
Web www.media13.com


Media13.com is a source of free to republish or reprint articles, writers may submit your articles in our database as long so you agree that your article will be freely republish or reprint by other.


Submit Article

Search our database

Received article from us.

Name

Email Address

Friends

Bollywood News
Link building
Article submission service
Freelance Writers
Laser hair removal

We have been looking for freelance writers. Contact us

 


SEO Benefits Of CSS   by Steve Chittenden



This article is most useful if you are somewhat familiar with HTML and CSS. I explain the concepts well enough that you do not have to be an expert, but I want to provide material that will introduce you to more advanced design in ways you can understand.


Like many other web designers, I began laying out web pages using graphical
tools and discovered the wonders of tables for layout without anyone telling
me to use them. Since browser support for CSS Is better than it used to be,
and tables cause problems, CSS offers you a benefit you may not have thought
about before, the benefit of better SEO.


I want to say right away that quality content should be your highest priority,
not SEO tricks. The advice given here will help you get better search engine
results because the key to real SEO begins with good page structure and organizing
your content . By understanding how search engines "see" your pages,
you can build better page structure.


Search engines use what is called "top down" logic in looking
at web pages. They look at your code, not the visual display that users see.
Human eyes are drawn to the page content right away, even when there are other
things on the page. Search engine robots do not see things the same way, but,
they are logical and predictable once you understand them.


You have most likely seen search engine results that do not make sense because
some obscure content gets displayed instead of the actual content of the page.
I will illustrate top down logic so you can understand how to make CSS work
for you.


In the mind of a search engine, the gist of your web page is determined first
by what content is at the top of the page. If you start with certain words,
they appear often throughout the page, and then again at the bottom so it
is essentially your closing point, that, in the automated brains of a search
engine is what your page is about.


Your well trained eyeballs will probably look for a title, then read the
content; so to you, this is the top down logic of the page. Read your HTML
code from the top down. You may be surprised how far you have to scroll before
you get to the real content, and, how much other "content" a search
engine will see first. If you use tables for layout, the top down logic of
your code looks like it has the legs cut off and the place settings are on
the floor.


Using CSS, you can organize your code so the search engines see your real
content first regardless of where it appears on the page.


Let`s use a simple HTML example:


<html>

<head>

Insert all your head info, including a CSS link like below


<link rel="stylesheet" type="text/css" href="file.css"
/>

</head>


<body>

<div id="content"> <!--I will explain this div later-->

<h1>Heading With Your Important Keywords</h1>

<h2>Subheading With Important Keywords</h2>

<p>Your important content will be here, with keywords. Notice how this
is right at the top of your code. No matter where this is on the page, you
want it here at the top of your code.</p>

</div> <!--This would be the end content div-->


<div id="nav"> <!--This div represents a navigation example-->

<p>This could have image buttons, text, or both. If using images, make
sure to include alt text which should contain keywords. With tables for layout,
this would most likely be above the content, now it is below where it should
be. The div id above will help you control this.</p>

</div>


<div id="banner">

<p>As the name can imply, this can be at the top of the page, but notice
how it is way down in your code because it has no strong SEO elements. It
might be your logo or additional navigation. Even though it shows at the top
of the page to the user, it is not the first thing you want the search engine
to read or display in search results.</p>

</div>


<div id="summary">

<!--This div can be anything, used here as example-->

<p>This example of another div is used to illustrate another SEO principle.
Use keywords in it so it is like your closing point. By appearing at the bottom
of the code, it makes stronger SEO.</p>

</div>


</body>

</html>


Next, I will show a simple example of how to make the file.css to control
the layout. You can use this code in a text editor to see the effects. For
simplicity, I will focus on only the layout code, we will not be declaring
fonts, sizes, links, etc.


In the HTML example, we have 4 sections (divs). You can divide up by pixels
or percentages (or even both). We will be using pixels for simple illustration
of the principle here.


/*Begin CSS*/


/*Just for the record, this is a comment in CSS*/


#nav {position: absolute;

    top: 0px;

    left: 0px;

    width: 200px;

    height: 500px;

    padding: 20px 10px 10px 20px;

}


/*To explain the code above, I listed the divs in a different order than
the HTML. This order follows the flow of the way I am doing the page layout.
It also follows the flow you would have if you set up a table structure in
HTML. The nav section butts up against the top left corner of the page (top
and left are both 0px). The # sign defines the "id" of the div followed
by the name. I set the width to 200px which is like making a table cell that
width. I have used the 500px height just as an example so the summary below
will start where the nav ends. You want to be sure everything will fit with
the sizes you specify. You can also set padding, but unlike a table cell in
HTML, you can set each side separately. In the example above, the first 20px
is the top, then it declares each side in clockwise order so the left side
is also 20px.*/


#summary {position: absolute;

    top: 500px;

    left: 0px;

    width: 200px;

    padding: 20px 10px 10px 20px;

}


/*The summary above starts where the nav ends, at 500px from the top.
The other settings match for alignment. I did not set a height because it
will stretch just like a table cell when you insert your content.*/


#banner {position: absolute;

    top: 0px;

    left: 200px;

    width: 550px;

    height: 150px;

    padding: 20px 0px 10px 20px;

}


/*The banner will be at the top of the page, but will start at 200px from
left where the nav ends. Declaring a height is optional, but it will help
for making sense out of where the content below will start. I used 150px just
as an example. The reason for 0px padding on the right side is because the
remainder of the screen is empty in this layout, no need to pad that side.
I limit the width so it will display well down to 800x600 res (the total width
here is 750px).*/


#content {position: absolute;

    top: 150px;

    left: 200px;

    width: 550px;

    padding: 10px 0px 10px 20px;

}


/*Now the content starts right where the banner leaves off, 200px to the
left and 150px from the top. Notice this is last. If you used tables to create
the same layout, this would be last in your code too. The search engines would
read everything else before getting to the meat of your page. In the HTML
used here, it is at the top of your code so the search engines see it first.*/


/*End CSS*/


These are simple examples, but if you can think in terms of top down logic,
you can build search engine friendly pages. They will also load faster as
complex table structures take longer to load than CSS layout, which is another
benefit to CSS.


Author Info:

Steve Chittenden seeks to help business owners and organizations market themselves effectively and succeed. His company, Creative Business Services, provides carefully planned web design, graphic design, writing, and marketing services aimed at achieving this goal. Please visit www.cbscreative.com for more information.


Latest 20 articles

Hire the California Labor Board or California Labor Law Attorneys - You Decide With a downturn in the economy, many employers are cutting back on payroll. Unfortunately, some employers are reducing payroll costs by violating the California overtime laws. When this occurs, employees have essentially two options to recover their California overtime pay: the California labor board, or hiring California labor law attorneys. Although the California Labor Board is a commonly

Hiring a Car At Bangalore - Is More of Necessity Than A Luxury Your sedan is probably the best materialistic thing that you own and while going to a new place, that is what you ought to miss the most but if you are going to Bangalore then you probably have a option of getting a replacement so that you don’t miss it all that most because it will be as comfortable and as obedient as your own car and the Bangalor

How to Choose a Car Rental Company in Bangalore Bangalore is a place that lists one of the best as far as infrastructure is considered in India as it is the IT hub of India and thus the roads to drive is atmost pleasure and thus if Bangalore is the destination that you are planning for next then the best way to move around is by hiring a car. To hire is car is very simple if it is in Bangalore because there are some very good car rental compani

Car Rental Companies in Bangalore If you are travelling to Bangalore and hiring a car is what worrying you then you can be relaxed because this is one service that you will easily get in Bangalore and that too at very affordable and economic prices. Basically there are really good car rental companies in Bangalore available for renting the cars and you can either book in advance or go there and hire a car for yourself. Also, you h

Tips to Hire a Car in Bangalore One thing that most of us agree is that the fact that the most comfortable way to move around at any place is by your own vehicle but what if you are going to a new place, it is not possible to carry your vehicle along with you and you actually cannot trust too much on the public transportation system and at such situation the best possible option is to hire a car for yourself, at some places it c

Hire a Car: Comfortable Way to explore Bangalore If you are out to a new place than the first thing that comes into your mind is a comfortable accommodation and then the second one on the priority list is a comfortable way to move around in the city and if Bangalore is your preferred location, than you’ll be having options for both of the facilities, but if we specifically speak about the second one that is moving comfortably than the best opti

Car Rental – A convenient mode of transport in Bangalore Bangalore, a place which probably is considered one of the best places in India as far as infrastructure is considered and reasons are many for that, one is because of the IT hub that it is and also because it is one of very good places if you are considering holidays and because of this very good facility provided for the people visiting Bangalore is that you have many options in case if you are

Rent a Car in Bangalore: Take the Right Decision In today’s world, time is money; the more you save it better it is for you. And in that case if you are going to another place where you are not too familiar with the surroundings, then instead of wasting time on travelling by locating and travelling by public transport is to hire a vehicle for yourself. This helps in many ways, one it saves on time and also it moves at your pace so you don’t have

Bangalore Car Rental: Save Your Time When you are at an unknown place or for that matter known place and time is your major factor of concern then, the best way to save on time is by having your own vehicle for conveyance. This gives you freedom to move at your own pace and wish. And for that matter if you are at a place like Bangalore where the roads are so beautiful that it is a sheer pleasure to travel through your own rented vehi

Best Package Tours to Kerala Kerala – God’s own country which means heaven for those who appreciate the real untouched, naïve beauty of nature and if you are one of those than consider Kerala as the option for you next holiday. Kerala gives an option to explore the nature to the fullest because it has all the places where you can explore the nature be it scenic beaches or the hill stations or the ethnic culture, just everythi

Kerala Tour: A Getaway from Regular Stress If you are tired of daily stress and meetings and looking for a getaway so that you snatch some time for yourself with your loved one’s than Kerala holidays is the perfect is the perfect thing for you. Its calmness and closeness to nature would give you that much needed peace of mind that you always wanted. Also along with enjoying the beauty of this scenic place on your holidays to Kerala you can

Kerala Tour Packages: Have A Look If holidays are on your mind, then Kerala is one option that you cannot choose to neglect. Because Kerala is one place that offers you all from calm and serene natural places to exciting sports to exotic beaches and also beautiful hill stations, everything provided at one place which is also known as god’s own country. And obviously such wide range of activities would make it a tough job to cover

Kerala Holidays: Places To Visit Kerala also known as God’s own country, the name itself is synonymous with heavenly experience and to see this heavenly place all you have to do is pack your bags and head straight away to Kerala. Kerala is a place of multiple opportunities of which you can select the ones that interest you the most and design your own package for your Kerala tour. You can come to Kerala for various reasons and th

An Overview to Kerala Tourism Life’s a journey and to keep moving there are occasional breaks that you need to take and if you are looking for one of those breaks than Kerala holidays is one place that is your answer. Be it a family vacation or honeymoon tour or just a getaway with friends, this is one place that provides with ample opportunities for every kind of vacation. In fact there is so much to do and see that you will

Kerala : Popular Travel Destinations Kerala holidays is one thing that you should treat yourself and your family at least once and once you go to Kerala, you’ll have that craving to go back again and again, such is the charm of god’s own country that is Kerala. To give you a glimpse of what all Kerala have to offer to its visitors, let’s start with the most famous tourist hot spot i.e. Munnar, a place which is famous for its tree and

Kerala : Welcome To GOD’S Own Country If serene and calm beauty of nature is what’s on your mind then, Kerala is just the place you are looking for. It is so pristine and pure that it is called God’s own country. Greenery spread everywhere till your eyes can see; picturesque views, fog in the morning etc. are some of the first things you will notice when you step in Kerala. Kerala Tou

A California Labor Law Attorney: Just What You Need in Times of Trouble! In a time where California labor law is constantly changing and employers are playing it “fast and loose” in order to make ends meet, a California labor law attorney may be just what the doctor ordered to explain the complex California overtime laws. With a weakening economy, and jobs being shipped overseas, it is not uncommon to see rampant abuse of the California overtime laws. Employers r

Tax Debt Help Needed - How Can I Stop an IRS Bank Levy? The IRS does give you ample warning that they intend to levy your bank account. You undoubtedly received the notice and demand for payment from the IRS which included the amount you owed in back taxes. You probably did not contact the IRS at that time, and that was very important. The next communication you received was called the “Final Notice” which did express their Intent to Levy and also inc

California Labor Laws: Asserting Your Employee Rights Many employees when experiencing a labor violation are confused as to where to turn and typically take one of four paths. 1. A very common path and usually the most treacherous, is doing nothing at all. When an employee is hesitant to hire California overtime lawyers or California labor law attorneys to handle a situation, it usually gets worse before it gets better. Complacency will typicall

California Overtime Laws: Top 4 Common Employer Mistakes A California labor law attorney has revealed the four most common mistakes that employers make in violation of California overtime laws. Although California labor laws for breaks and lunches are clear, nevertheless employers tend to overlook something as simple as giving their employees a meal or rest break. While this is only one of our top three violations, it is often the most overlooked.

Categories
Acne
Advertising
Advice
Aerobics-Cardio
Affiliate Programs
Alternative
Arts
Attraction
Auctions
Audio-Streaming
Autos
Awards
Babies-Toddler
Beauty
Blogging-RSS
Book-Marketing
Branding
Breast-Cervical-Ovarian-Cancer
Broadband-Internet
Build-Muscle
Business
Cancer
Careers-Employment
Casino-Gambling
CGI
Coaching
Coffee
College-University
Colon-Rectal-Cancer
Communications
Computers
Cooking-Tips
Copywriting
Crafts-Hobbies
Creativity
Credit
Cruising-Sailing
CSS
Currency-Trading
Customer-Service
Dating
Debt-Consolidation
Debt-Relief
DHTML
Diabetes
Direct Mail
Divorce
Domain Names
EBooks
ECommerce
Education
Elder-Care
Email-Marketing
Email Entertainment
Entrepreneurialism
Environment
Exercise
Ezine-Marketing
Ezine-Publishing
Family
Finance
Fishing
Fitness
Food
Free
Games
Gardening
Goal-Setting
Golf
Government
Grief-Loss
Hair-Loss
Happiness
Hardware
Health
Hobbies
Holidays
Home-Security
Homes
Home Business
Home Repair
HTML
Humanities
Humor
Innovation
Inspirational
Interior-Decorating
Internet-Marketing
Javascript
Kids And Teens
Landscaping-Gardening
Law
Leadership
Leases-Leasing
Legal
Leukemia
Link Popularity
Loans
Lung-Cancer
Lymphoma-Cancer
Management
Marketing
Marriage-Wedding
Martial-Arts
Medicine
Meditation
Men's-Issues
Metaphysical
MLM
Mobile-Cell-Phone
Mortgage-Refinance
Motivational
Multimedia
Music
Negotiation
Network-Marketing
Networking
News-and-Society
Newsletters
Nutrition
Off-Line Promotion
Online Business
Online Promotion
Organizing
Other
Outdoors
Page Rank
Parenting
Personal-Tech
Pets
Photography
Podcasting
Poetry
Politics
Positive-Attitude
PPC-Advertising
Presentation
Prostate-Cancer
Psychology
Public-Speaking
Publishing
Real-Estate
Recipes
Recreation
Reference
Relationships
Religion
Sales
Sales-Management
Sales-Teleselling
Sales-Training
Satellite-Radio
Satellite-TV
Scams
Science
Security
Self Help
Self Improvement
Sexuality
SE Optimization SE Positioning
SE Tactics
Shopping
Site-Promotion
Site Security
Skin-Cancer
Small-Business
Social Issues
Society
Software
Spam
Spirituality
Sports
Stocks-Mutual-Funds
Strategic-Planning
Stress-Management
Structured-Settlements
Success
Supplements
Taxes
Team-Building
Technology
Teleseminars
Time-Management
Traffic-Building
Traffic Analysis
Travel
Uterine-Cancer
Vacation-Rentals
Video-Conferencing
Video-Streaming
Viral Marketing
VOIP
Web-Development
Webmasters
Web Design
Web Hosting
Weight Loss
Wine-Spirits
Women
Writing
Yoga

Copyright © media13.Com  2005. All Rights Reserved.

Sources : SEO India - Internet web directory