Where do I place metatags?

Meta tags should be inserted between the <head> and </head> tags of your web page.

For example:

<html>

<head>

<title>Your Site Title goes here</title>

<meta name="keywords" content="Your keywords go here, separated by a comma">

<meta name="description" content="Your site description goes here">

</head>

<body>

.. Page content is placed here ..

</body>

</html>

Related articles