title
The browser tab title and a strong page identity signal.
Learn Favicon & Page Title with practical HTML examples for navigation, images, alt text, media behavior, metadata, accessibility, SEO and live practice.
HTML links and media
The title element appears in browser tabs, bookmarks, history and search results. It is one of the most important metadata elements in HTML.
A favicon is the small icon browsers show in tabs, bookmarks and other surfaces. It helps users recognize the site quickly.
This topic sits in links and media because it connects HTML metadata, icons, brand recognition and search presentation.
The browser tab title and a strong page identity signal.
Connects a favicon or icon file.
Icon used by Apple devices when saving a page.
Titles influence how search results are understood.
Syntax and structure
The title should identify the page. Icon links should point to real icon files in useful sizes and formats.
<head> <title>HTML Links & Media | Full Stack Masterclass</title> <link rel="icon" href="/favicon.ico" sizes="any"> <link rel="icon" href="/icon.svg" type="image/svg+xml"> <link rel="apple-touch-icon" href="/apple-touch-icon.png"> </head>
<head> <title>Home</title> <link rel="icon" href="missing.png"> </head> <title>Best HTML Course HTML Tutorial Learn HTML Online HTML</title>
Rules that matter
Clickable and visual HTML affects how people move, scan, trust and share a page. The details are small, but the user experience impact is large.
Every page should have a title that identifies that page, not only the site.
Do not stuff repeated keywords into the title.
Broken favicon paths look careless.
ICO, SVG and PNG touch icons can cover many browsers and devices.
Title and icon links are metadata, not visible body content.
The icon should be recognizable at very small sizes.
Production thinking
This matters because the website is not only seen inside the viewport. Tabs, bookmarks, history, search results and shared links all need a clear identity.
The title helps users identify the current tab or window. This matters when several tabs are open.
Test icons in real browsers. A favicon that works in one place can still fail in pinned tabs, bookmarks or mobile home screens.
A clear title can improve search result clarity and click-through. Write for humans first, with the primary topic naturally included.
Live code lab
Edit the HTML or CSS, then use Run to refresh the preview. The preview is isolated, so links and forms stay inside this practice area.
Mini assignment
Practice assignment
Try it yourself
Self-check
Do not only read this page. Answer these questions out loud or write the answers in your own notes. If one answer feels vague, revisit the examples before moving on.