Take a look at this: How to make webpages with the same design. I used it to make a website called X Phoenix. When I type X Phoenix on google, it doesn't come on top, although i've put it on google webmasters and it's been 4 months. It doesn't come anywhere I can see on Google Search. On this pdf, it's written that use different keywords, titles, and descriptions for all pages. But in my website, i've used the method in which i put the head and a few other things from body in a file called the header.php and things below my content in footer.php, then in a page for ex. home.php, I put:
<?php include('header.php'); ?>
my text
<?php include('footer.php'); ?>
My metas are in the header, so how am I to change it in each page.
How to write keywords i.e xphoenix,x,phoenix,f1, etc.
Also tell me other ways to make my website on top of google and make it look better good.
Please give me some info on sitemaps and how to make them.
If I have the name: team x phoenix, should I write team,x,phoenix or team x phoenix in keywords.
You can define your different meta tags on each of your pages by this:
And inside your header.php-file you're doing that for all the different meta tags you have defined:
To my own experience, I store my meta descriptions and keywords in the database respectively to the page which contains it. Then I call it to the header dynamically.
You could do this for example:
In you home.php
In your header.php you could do this:
But i think it is best if you'd just use google for this.