- HTML Tutorial
- HTML Introduction
- HTML Editors
- HTML Basic
- HTML Comments
- HTML Elements
- HTML Attributes
- HTML Id & Classes
- HTML Skeletal Tags
- HTML Heading Tags
- HTML Paragraph Tag
- HTML Line Break Tag
- HTML Pre Tag
- HTML Anchor Tag
- HTML Image Tag
- HTML Horizontal Line Tag
- HTML Inline & Block
- HTML Inline
- HTML Block
- HTML LInks
- HTML Images
- HTML Formatting
- HTML Head
- HTML Head
- HTML Title
- HTML Meta Elements
- HTML Favicon
- HTML Style
- HTML List
- HTML Lists
- HTML Unordered List
- HTML Ordered List
- HTML Description List
- HTML Table
- HTML Tables
- HTML Table Headers
- HTML Table Styling
- HTML Table Colgroup
- HTML Form
- HTML Forms
- HTML Form Elements
- HTML Form Attributes
- HTML Input Types
- HTML Input Attributes
- HTML Form Actions
- HTML Semantic
- HTML Semantics
- HTML Graphics & Media
- HTML Canvas
- HTML SVG
- HTML Video & Audio
- HTML Plug-ins
- iFrames in HTML
- HTML Miscellaneous Tags
- HTML Code Tag
- HTML Entities
- HTML Quotation
- HTML Global Attributes
- HTML Obsolete Tags
- HTML Emojis
- HTML Symbols
- HTML Events
- HTML Colors
HTML: META ELEMENTS
Certainly! Here's a format for using <meta> elements in HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Description of your web page">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Your Name">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My HTML Page</title>
</head>
<body>
<!-- Content of your HTML document goes here -->
</body>
</html>
In this format:
- <meta charset="UTF-8"> specifies the character encoding of the document as UTF-8, which supports a wide range of characters and is suitable for internationalization.
- <meta name="description" content=" Description of your web page"> provides a brief description of your web page, which can be displayed by search engines in search results.
- <meta name="keywords" content="HTML, CSS, JavaScript"> lists keywords relevant to your content, although their impact on search engines has decreased over time.
- <meta name="author" content="Your Name"> specifies the author of the web page.
- <meta name="viewport" content="width=device-width, initial-scale=1.0"> configures the viewport to ensure proper scaling on various devices, making your web page more responsive.
You can customize the content of the <meta> elements based on your website's specific needs. For example, you can adjust the description, keywords, author name, and viewport settings to best suit your HTML document.