HTML COURSE โข LESSON 16
HTML Favicon
A favicon is the small icon displayed in a browser tab next to the page title.
Add a Favicon
Place the favicon inside the HTML <head> section.
Favicon Code
<head>
<title>EDUHUB</title>
<link
rel="icon"
type="image/png"
href="favicon.png"
>
</head>
Common Favicon Formats
- PNG
- ICO
- SVG
- GIF
Example Folder
Project Structure
my-website/
โโโ index.html
โโโ favicon.png
โโโ style.css
โญ EDUHUB Tip
Use a simple square logo for your favicon. Small icons are easier to recognize in browser tabs.