What is a favicon?
It is a small image file that represents a website or blog, often displayed in the browser tab.
A favicon is also referred to as a “_____ icon” or “website icon.”
tab
Where exactly in a web browser is the favicon displayed?
It appears in the browser tab, immediately to the left of the page title.
What is the most universally supported file format for favicons?
The .ico format is the most universally supported.
Name two examples of modern image formats, other than .ico, that are supported for favicons.
Modern browsers also support formats like .png and .gif for favicons.
Where should the favicon image file ideally be stored within a website’s project folders?
It should be stored in the root directory of the website.
Which HTML tag is specifically used to insert a favicon into a webpage?
The <link></link> tag is used to insert a favicon.
The HTML tag for a favicon must always be placed inside the _____ section of the document.
<head>
</head>
Is the <link></link> tag used for favicons a paired tag (requiring a closing tag)?
No, the <link></link> tag is an empty (void) tag and does not require a closing tag.
What is the function of the rel attribute in the <link></link> tag for a favicon?
It defines the relationship between the HTML document and the linked file.
When using the <link></link> tag for a favicon, what value should be assigned to the rel attribute?
The rel attribute should have the value icon.
What information does the href attribute provide in a favicon’s <link></link> tag?
It specifies the path or destination to the favicon image file.
Provide an example of the syntax for an href attribute pointing to a standard favicon file.
An example is: href=”favicon.ico”
Write the complete line of HTML code needed to add a favicon named “robot.png”.
<link></link>
What is the purpose of the online resource favicon.cc in relation to favicons?
favicon.cc is a resource used to create a custom favicon.
What is the purpose of the online resource flat icons in relation to favicons?
flat icons is a resource used to download a pre-made favicon.