Simple Metatag Generator
This is a simpler version of our metatag generator and only generates code for the description and keywords meta tags . These are the most important meta tags .
Code :
<form action="metatag.php" method="POST">
<font face="Arial" size="2" color="Black"><b>Description:</b></font><br>
<input type="text" size="35" name="description">
<br>
<font face="Arial" size="2" color="Black"><b>Keywords(Seperate with
commas):</b></font><br>
<input type="text" size="35" name="keywords">
<br>
<input type="submit" value="Generate">
<input type="reset" value="Reset">
</form>
<p>
<?
//generate meta tags
echo "Place the following html between the head tags of your site to add your mega tags<br>";
echo "<BR>";
echo "<META name=\"description\" content=\"$description\"><BR>";
echo "<META name=\"keywords\" content=\"$keywords\">";
?>
Example :
Place the following html between the head tags of your site to add your mega tags
<META name="description" content="">
<META name="keywords" content="">