herbal essence candle

just another regularban.info web blog

MEMBERS:

Page Titles and Meta Tags

Page titles

To help obtain high page rankings with search engines, the contents of your page title are one of the most important things that need to be dealt with. The page title is the first amount of information provided to a search engine describing the contents of the page. You should also be aware that the page title provides information about the contents not only to search engines, but to visitors as well. The page title will show up at the top of the browser window. Your page title should include your keywords and should be no longer than 60 characters long. If it is too long, your visitor will only see the first part. An easy way to figure out the length of a page title is to type it into a word processor that contains a word count feature. Since your page title needs to be a certain length, it is important to make the best use of the space, and although some words that are not key, will use up that valuable space, the title itself still needs to make sense. A keyword in your title can be repeated, but having the same words more than two times is not recommended. Compare your page title to others and see what makes their content look appealing enough to catch a potential visitor's eyes. Your page title needs to stand out between the other nine titles on the search engine results page. As you design your site, remember the fact that visitors may be directed to somewhere other than the homepage because the search engine believes it is the best match for a keyword. With this in mind, all pages of your website should be considered unique and have their own title.

Meta tags

For your site to be effective, you need to develop Meta tags. These tags are a site description and a keyword list. It is important to note that not all search engines use these Meta tags. Starting with your home page, you will need to insert two Meta tags. The first is a Meta description sentence and the second is a Meta keyword list. The information you put here is for search engines to use when they review your site. This review process is known as crawling and is done with a program called a spider or robot. The description tag serves two purposes. The spiders search it for keywords and it is also displayed to a surfer as they view search engine results. The information obtained by the spiders is kept in a database that is used when a person types in a query to a search engine. When you create your Meta keyword list, order them from the most relevant to the least. The first part of your list should contain the keywords that best describe your site and are unique enough that when someone does a search, there is not a large amount of competition to go up against. Make sure that all the keywords used in the description tags are again listed. The words at the end of your list are known as wildcards and include synonyms and words that could have been spelled wrong when someone was doing a search. During your Meta tag creation process, do not be afraid to go to other people's websites and see what they have used. Type in the same words you would like to include in your lists and see what the search engines display. This is a very good way to help determine your competition.

Pat L. started out creating a few niche sites and during that process gained huge amounts of knowledge in the website development process. You can visit http://www.abundantarticles.com for more information about developing and creating a website.

 


Using Functions

Functions are used to perform a well defined task that is normally repeated at various places within a web site, web application, or other software application. The function sometimes needs certain information before performing its task, and sometimes returns a value to the calling page or program.

An example of how to use a simple function in PHP:

 function showMessage() {

echo "{$_SESSION["message"]}"; }

The above example shows a very simple function that displays the contents of a session variable called 'message'. The idea being that while a user is using a web site, etc, various messages are generated and stored in the 'message' session variable. Whenever the showMessage function is called, the contents of the session variable are displayed. So, for example, when the user logs on, you could display a message saying that they have done so. Likewise, when they log off, a different message could be displayed.

Calling a function

To call the showMessage function, you would just need to include the line:

showMessage()

in the web page (wrapped in php tags to distinguish it from normall HTML).

Passing values to a function

Often, a function requires one or more input values in order to perform its task. For example, take the following example that takes two numbers as input, and adds them together. The result is then returned to the calling web page or program.

function addNumbers($number1,$number2) {

$answer = $number1 + $number2;

return $answer; }

In the calling program we would have something similar to the following:

$number1 = "5";
$number2 = "6";
$sumOfNumbers = addNumbers($number1,$number2);
echo "$sumOfNumbers";

Obviously, in a real program you would not have the numbers hardcoded like this, but they would be obtained from user input or by some other means. Notice also that although the name of the returned variable is $answer, the calling program makes no reference to that. We could, if we wanted to, change the calling program to:

$answer = addNumbers($number1,$number2);
echo "$answer";

which might make things slightly easier to understand.

About the Author: John Dixon is a web developer working for My Health Questions Matter, a company that helps users of the health service to ask the right questions when discussing their medical condition with health professionals. John is also interested in computer history, and maintains http://www.computernostalgia.net, a site dedicated to the history of the computer. John also provides web development services to large and small clients via his own company John Dixon Technology Limited.

 


How To Lay The Foundation For A Good Website

So you are passionate about a particular subject and you want to take your passion online. At this point you may not know where to start and this is where I hope I can help you. After all you deserve to share your passion with others and they will benefit from it also.

The key to building any website is to build it with your visitor in mind. What can you truly do for them that will add value to their experience when visiting your site? Let's take for example that you enjoy building model planes. The first place you are going to visit is the online forums.

The reason I choose forums is because this is where conversations take place relative to any given topic. This will give you a measure of interest. The first step is to see how up to date the forum is and secondly how many posts it receives per day. Additionally how many people respond to those posts on any given day?

Obviously the more the better, the more interest the better for you. The next thing you are going to look for is, what are the questions being asked and can you engage in the conversation and offer solutions. If this is the case your next task is to look for keywords. What keywords do people use to seek out solutions for their needs?

The next thing to do is look for a keyword tool. I am going to use Google's keyword tool for this example. Keyword tools by the way are not by any standard of the imagination an exact science. They give you a rough guide as to how many times a given keyword is searched. So do not think that the numbers you get are exact.

Your task right now is to develop a list of keywords.

Once you have this list you are now going to look at the level of competition. Starting out we do not want too much competition but remember competition is good as it means there is money to be made in that market.

We at this point are just looking for cheaper ways to enter the market. To do this enter your keyword into the search box in quotes. Then check how many websites are coming up for that keyword. If it is in the millions that is not good if it is in the thousands then that is great.

You will now be refining your list based on competition. Once the list is completely refined you will now have the general structure of your site. These keywords will make up individual web pages.

To conclude this is how to lay the foundation then once you have these keywords you will be ready to structure each of the pages on your site using each individual keyword with content relative to that. To learn how to put all this together select any of the links provided.

Watch These Free Videos At Site Build It Customer Reviews please allow time for the videos to load.

Learn how to publish a real website That works Site Build It Review. Sign Up for the free affiliates masters course.

http://www.lfdab.com/Site-Build-It-Customer-Reviews.php

 


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).