- 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: Favicon
A favicon is a small icon associated with a website that typically appears in the browser's address bar, tabs, bookmarks, and favorites lists. It's a way to visually represent a website and make it easily recognizable among a user's bookmarks or when multiple tabs are open in a browser.
To add a favicon to your HTML document, you can use the <link> element in the <head> section of your HTML code. Here's an example of how you can do it:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Website</title>
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body>
<!-- Your website content goes here -->
</body>
</html>
In this example:
- <link rel="icon" type="image/png" href="favicon.png"> is the line that adds the favicon.
- rel="icon" specifies the relationship between the current document and the favicon.
- type="image/png" specifies the type of the favicon image. It can also be "image/x-icon" for .ico files.
- href="favicon.png" is the path to your favicon file. Make sure to replace "favicon.png" with the actual path to your favicon image file.
You can create a favicon image using graphic design software like Adobe Photoshop, Illustrator, or online favicon generators. The standard size for a favicon is 16x16 pixels or 32x32 pixels, but modern browsers can support larger sizes as well.