Codice HTML:
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="SCRIVI QUI UNA BREVE DESCRIZIONE DELLA PAGINA WEB">
<meta name="keywords" content="tag, tag, tag, tag, tag...">
<title>Titolo della pagina</title>
</head>
<body>
...
</body>
</html>
Tra i tag head del file html va messo il titolo (<title>Titolo</title>), la descrizione (<meta name="description" content="Breve descrizione della pagina Web">) e i tags (<meta name="keywords" content="tag, tag, tag...">).
Le varie parole (tag) in keywords vanno separate da una virgola (,).
Esempio:
Codice HTML:
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Pagina di prova">
<meta name="keywords" content="pagina, prova, html">
<title>Pagina di prova</title>
</head>
<body>
Questa è una pagina di prova.
</body></html>
In questo caso i tag (keywords) sono pagina, prova e html.
Spero di essere stato chiaro...