book buy guest sign herbal viagra

just another regularban.info web blog

MEMBERS:

Simple SEO Web Site Development Tips

So, you've bought your domain, got some hosting. Now what? You need to make sure that your web site is as friendly as possible to the search engines so that they send you some traffic. This process is called "search engine optimization" or SEO for short. It is probably the most important - and most neglected - part of web site development.

Here are some tips to help your SEO web site development.

1. Don't use frames

Frames may help you to control the layout of your site but they are a nightmare as far as the search engine robots are concerned and will make it difficult for your site to be crawled by the search engine spiders.

2. Make sure there's text on your pages

This even goes for the page featuring that expensive Flash movie that you're currently forcing visitors to your site to watch (or more likely press the "skip intro" link). Search engines don't know what's written on images or animations. They can only read text (the images search is their best guess based on the text on the page and the video search is based on the description of the video). So make sure they have text to read!

3. Separate style and content

This means using CSS as much as possible to control the layout of your pages. That way the spider can read more of your content if all the "this is how it should look" stuff is self contained in its own CSS file. The biggest snag with this is that CSS needs to be really well written if it is to look nice at different screen sizes, on different browsers and with varying amount of text on the page. Test at least in Internet Explorer and Firefox and play around with the width of the browser to see how well or badly your site copes.

4. Use a title tag

HTML design programs are good at putting in really generic titles such as "Page 1" or "Home Page" but they're almost certainly not what you want the search engines to think your site is about. Change the title to something meaningful. If possible make your title catchy and make sure it's short enough to be completely displayed when the search engine results are shown. This is basic SEO but you'd be amazed how many people don't do it.

5. Put in a meta description tag

Despite what you may read, the description tag is useful. It isn't often taken into account when Google or whoever decide which results to show, which is why some people say it isn't important. But it's normally used as the extract that's shown below the blue clickable link to your site. So if it says "XYZ home page constructed with Dreamweaver" instead of something interesting, that's what will likely show up below your title. And if it's blank, you're giving the search engines free reign to put whatever they want there.

6. Keep it simple

Spiders like simple. Despite all the advances in the internet, they're fairly dumb and the easier you make it for them to understand what your site is about, the more they will reward you.

Get more help on SEO web site development and do your best to make sure that your website gets the search engine results it deserves at http://www.squidoo.com/seowebsite

 


Plan Ahead for Your Website Success

No matter where you are in the online marketing world, you may or may not have your own website. You may wonder if creating a business website will be efficient in building your business. Here we offer you a little guidance about creating an effective online presence.

First, you should determine your website goals. Whether you are attempting to gather leads, offer knowledge, generate sales or even something different, your website design is dependant on your online marketing goals.

Once you have determined your goals, you need to know who your target viewers are and then target the photos, content and language to fit their needs and preferences. However, you should never just assume that everyone is at the same level of understanding as you are about the subject.

Then once you know who your target viewers are and their preferences, make sure that your website features ease in navigation. Just make sure that navigation is easy and simple without including a lot of distracting animated redirects.

Make sure you place a call to action on every web page of your business site, since many people simply wander the internet; they need direction of where to go and what to do once they are there. Simply capture their attention, while teaching them something new, as this will motivate them to make a purchase.

Determine whether you are trying to generate more traffic to your website, seeking sign ups or encouraging you visitors to make a purchase. On the other hand, perhaps you are trying to get people to come to a physical location. You will need some means of measuring your efforts, otherwise you will not find out what methods work and what does not work.

To allow your business to move onto the next level, you will need to follow this guidance, whether you build your own website or pay a professional to build it for you.

Lisa Munoz of LM Designing provides leading website development and affordable website design for individuals, organizations, and businesses. Utilizing the latest in flash animations and php design elements, Lisa works with each individual client to create their ideal website and ecommerce solutions.

In addition to her beautiful and dynamic websites, LM Designing also provides graphic designing, logo development, printing services, and website marketing. Contact her to begin crafting your online presence in the way you've always wanted.

You can see examples of the websites her company has created at her website. Visit http://www.lmdesigning.com and request your free website design quote today.

 


Using Perl To Convert Hyperlinks And Filenames To Lowercase

Like a lot of web developers, I'm not always that disciplined when it comes to the file naming convention I use and I sometimes end up with a situation whereby I have some files that are in lowercase, some that begin with a capital, and some that are a bit of a mixture.

One web site I maintain contains about 2000 web pages and has about 20,000 hyperlinks. As you can imagine, I had one of those sinking feelings when I was told that in order to migrate the web site to a new content management system, all the file names and hyperlinks would need to be changed to lowercase.

Whenever I am presented with a problem like this, my instinct is always to write a Perl script using one or more regular expressions to solve the problem. This particular situation was no exception.

Change a string to lowercase

The following regular expression changes all the characters in a string to lowercase. The first part of the regular expression finds a hyperlink, and the second part converts the string. (Just in case this article is not displayed correctly, there should be a single backslash in front of the 'L$1').

1. $line =~ s/<a href="(.*?)"/<a href="L$1"/gs;

Change a filename to lowercase

Likewise, changing a filename itself is very simple. The following two lines perform the task quite nicely:

1. use File::Copy; 2. move ("$name", "L$name");

(Again, there should be a single backslash in front of the 'L$name'.)

If you need more information on how to incorporate the above code snippets into a complete script, feel free to contact me directly.

About the Author: John Dixon is a freelance web developer working for My Health Questions Matter, a company that helps users of the health service to ask the right questions in their dealings with health professionals.

John is also interested in computer history and maintains a Computer History web site.

Through his own company John Dixon Technology Ltd, John does web development work for various companies.

 


Pages 
* About

Archives
    * February 2008
    * January 2008

Categories:
* Uncategorized

Last Updated:

regularban.info is proudly powered by WordPress MU running on  regularban.info.
Create a new blog and join in the fun!
Entries (RSS) and Comments (RSS).