Skip to content
Share
Explore

Meta Info


<head>
<!-- Character Encoding -->
<meta charset="UTF-8">
<!-- Viewport for Responsive Design -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Page Title -->
<title>Complete HTML Meta Tags Example</title>
<!-- Basic Meta Information -->
<meta name="description" content="A comprehensive example showing all important HTML meta tags and their usage.">
<meta name="keywords" content="HTML, meta tags, SEO, web development, example">
<meta name="author" content="Your Name">
<!-- SEO and Crawling -->
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://example.com/meta-tags-guide">
<!-- HTTP-Equiv Tags -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- App Related (for mobile web apps) -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Meta Tags">
<!-- Theme Color (for browsers and mobile devices) -->
<meta name="theme-color" content="#4285f4">
<!-- Favicon (not a meta tag but commonly included) -->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- CSS -->
<link rel="stylesheet" href="styles.css">
</head>

Want to print your doc?
This is not the way.
Try clicking the ··· in the right corner or using a keyboard shortcut (
CtrlP
) instead.