Not sure what you meant by "page name" in your first post but I'll try and help you out with the following terms which you need to know:
(a) file name
(b) page title
(c) page description
(d) page keywords
*Each of these can be different for every page on your website. They don't have to be, but often you can bring in the unique aspects of each page into the above elements so that you rank better in the search engines.
What you've done so faris a really good start and here are a couple of tips to make it even better:
1. Your homepage has a block of text which is an image. This is how I first started doing sites, but you should try not to. Have text as text, that way Google and the other search engines can read it and know more about your site - this will help you get search engine traffic.
2. In your contact page, you have an email address. This time, you might want to think about either just having the contact form, or even having your email address as an image. This is because websites are constantly being scraped by bots looking to harvest email addresses to spam later. You'll save yourself a lot of spam deleting if you change this.
Let's use your "about us" page as an example for the following points:
3. You have your
page title which is useful:
Your page title is "about motorhomes for hire" and this comes from this bit of your html code:
HTML:
<title>about motorhomes for hire</title>
You may want to do things like use capitals, add keywords, include the website name. For example:
HTML:
<title>About US | Motorhomes for Hire</title>
Page titles are important as they are the thing that Google reads and interprets first. They are also the first line in the Google search results. Therefore, the more appealing they are, the more likely people will click them.
4. Your
page description is missing on this page. Along with the page title, the page description must be somewhere between the <head> and </head> tags in your code. It is very important as Google also reads this to find out more about your site and ranks your website accordingly. The page description is also very likely to be the text under the link in Google's search results.
You may want to add a description similar to this:
HTML:
<meta name="description" content="National Motorhome Directory. Search motorhome listings to find the perfect vehicle and list your motorhome for free." />
5. You could also include the
keywords code, although this isn't used by most search engines any more - it's tradition to use it though!
HTML:
<meta name="keywords" content="motorhome, motor home, caravan, motorhome directory, motorhome database" />
6.
File name is also very important for SEO purposes. This may have been what you were asking about in your first post.
Your "About" page has the following link/url
HTML:
http://www.motorhomesforhire.co.uk/page5.html
Therefore it's filename is
page5.html
This needs to be changed. You're missing a valuable opportunity to again, tell Google what you are about, and also to distinguish each page on your website. (Relevant file names really do help with search engine rankings).
For your "about us" file name, you may want to use something like:
about-motorhome-directory.html
This may be a good filename for this page because it distinguishes itself from other pages on your website (as it has "about" in there) and you have used another opportunity to have your keywords. Great for search engines. Plus website visitors expect to see descriptive file names as part of the url.
So instead of using file names like:
page1.html
page2.html
page3.html
page4.html
Use:
about-motorhome-directory.html
contact-national-motorhomes.html
advertise-motorhomes.html
motorhome-links.html
These are more descriptive, they are good for search engines and your users.
Try to mix up the file names, page titles and page descriptions using relevant and varying keywords.
Finally, once you have changed the file names, make sure that you change your navigation bar's links on every page to have the new links. Changing the nav bar on one page wont change the top of every page (unless you're using website software).
Sorry if you know most of this, I know how useful it was when I started building sites and people broke the information down for me.
Good luck