Meta HTML

HTML <meta> Tag To specify the document title, character set, page description, keywords, author, and other meta information, the HTML <meta> element is used. Example: <!DOCTYPE html> <html> <head> <meta charset=”UTF-8″> <meta name=”description” content=”HTML Examples”> <meta name=”keywords” content=”HTML,CSS,JavaScript”> <meta name=”author” content=”Codes Java”> </head> <body> <p>Hello World!!</p> </body> </html> Explanation: In the above example, we added … Read more