Meta tags provide information about the web page to the browser and search engines.
Meta tags are written inside the <head> tag.
Common Meta Tags
1. Charset
Supports all languages
2. Viewport (Mobile Friendly)
<meta name="viewport" content="width=device-width, initial-scale=1.0">
3. Description (SEO)
<meta name="description" content="Learn Syntax free HTML in easy way">
4. Keywords (Old SEO)
<meta name="keywords" content="HTML, CSS, Web Development">
4. Author
<meta name="author" content="Sadique Hassain">
Complete Head Example
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="HTML tutorial">
<title>My Website</title>
</head>
Important Notes
- Meta tags do not display content
- Important for SEO
- Always use charset & viewport