Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML meta tag</title> <meta charset="UTF-8"> <meta name="author" content="John Smith"> <meta name="keywords" content="HTML,CSS,Bootstrap"> <meta name="description" content="Free Web Design tutorials"> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <p><strong>Note:</strong> The <code>meta</code> tag commonly used to provide keywords, descriptions, author information, and other metadata that may be used by the browser to render the document correctly, or it may be used by the search engines for indexing purposes.</p> <p><strong>Note:</strong> The <code>meta</code> tag may only appear in the head section of a document, although it may appear any number of times.</p> </body> </html>